diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-10-22 18:32:16 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-10-22 18:32:16 (GMT) |
commit | 37af68eb5fe5865d15299e23412e63185f72e3fb (patch) | |
tree | 58e123350afc62a4af715e2181297dae8be8606d | |
parent | f1c59d1c6809ead733c3a7b226b622ff9357a210 (diff) | |
download | blt-37af68eb5fe5865d15299e23412e63185f72e3fb.zip blt-37af68eb5fe5865d15299e23412e63185f72e3fb.tar.gz blt-37af68eb5fe5865d15299e23412e63185f72e3fb.tar.bz2 |
new mask
-rw-r--r-- | tksao/frame/frame.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tksao/frame/frame.C b/tksao/frame/frame.C index 17b4ef8..f0ff5e7 100644 --- a/tksao/frame/frame.C +++ b/tksao/frame/frame.C @@ -403,9 +403,9 @@ void Frame::maskColorCmd(const char* color) maskColorName = dupstr(color); } -void Frame::maskTransparencyCmd(float t) +void Frame::maskTransparencyCmd(float tt) { - maskAlpha = 1-(t/100.); + maskAlpha = 1-(tt/100.); update(BASE); } |