diff options
author | rathnor <rathnor> | 2004-01-10 20:22:05 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2004-01-10 20:22:05 (GMT) |
commit | d5b04d1fa00c3e4edd951bbbf1bfddac8c33a066 (patch) | |
tree | a6ec035be49c125b428d10eb8c0ff4989b82814f /src/FbWinFrame.cc | |
parent | c8948f0398db122bf9c3e2416052e50cb1830784 (diff) | |
download | fluxbox_pavel-d5b04d1fa00c3e4edd951bbbf1bfddac8c33a066.zip fluxbox_pavel-d5b04d1fa00c3e4edd951bbbf1bfddac8c33a066.tar.bz2 |
fix grip drawing issue
Diffstat (limited to 'src/FbWinFrame.cc')
-rw-r--r-- | src/FbWinFrame.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc index 36c8e81..7a32353 100644 --- a/src/FbWinFrame.cc +++ b/src/FbWinFrame.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbWinFrame.cc,v 1.69 2004/01/10 00:37:35 rathnor Exp $ | 22 | // $Id: FbWinFrame.cc,v 1.70 2004/01/10 20:22:05 rathnor Exp $ |
23 | 23 | ||
24 | #include "FbWinFrame.hh" | 24 | #include "FbWinFrame.hh" |
25 | 25 | ||
@@ -929,6 +929,13 @@ void FbWinFrame::renderHandles() { | |||
929 | m_grip_left.setAlpha(theme().alpha()); | 929 | m_grip_left.setAlpha(theme().alpha()); |
930 | m_grip_right.setAlpha(theme().alpha()); | 930 | m_grip_right.setAlpha(theme().alpha()); |
931 | 931 | ||
932 | m_grip_left.clear(); | ||
933 | m_grip_left.updateTransparent(); | ||
934 | m_grip_right.clear(); | ||
935 | m_grip_right.updateTransparent(); | ||
936 | m_handle.clear(); | ||
937 | m_handle.updateTransparent(); | ||
938 | |||
932 | } | 939 | } |
933 | 940 | ||
934 | void FbWinFrame::renderButtons() { | 941 | void FbWinFrame::renderButtons() { |