diff options
author | simonb <simonb> | 2005-04-10 18:18:14 (GMT) |
---|---|---|
committer | simonb <simonb> | 2005-04-10 18:18:14 (GMT) |
commit | 88c66f0687d2a9e2018f22407b2587dc4d87d012 (patch) | |
tree | 197308ad2426783058f479d12329548c6a8a4374 /src/ArrowButton.cc | |
parent | 6cf66c66554a20a1c98eddf26af9e35b7c90cbd5 (diff) | |
download | fluxbox-88c66f0687d2a9e2018f22407b2587dc4d87d012.zip fluxbox-88c66f0687d2a9e2018f22407b2587dc4d87d012.tar.bz2 |
Big changes to how transparency works
Consequently rearrange lots of rendering ops, and strip calls to
updateTransparent
Diffstat (limited to 'src/ArrowButton.cc')
-rw-r--r-- | src/ArrowButton.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ArrowButton.cc b/src/ArrowButton.cc index 982133a..6f7f0f3 100644 --- a/src/ArrowButton.cc +++ b/src/ArrowButton.cc | |||
@@ -52,13 +52,11 @@ ArrowButton::ArrowButton(ArrowButton::Type arrow_type, | |||
52 | 52 | ||
53 | void ArrowButton::clear() { | 53 | void ArrowButton::clear() { |
54 | FbTk::Button::clear(); | 54 | FbTk::Button::clear(); |
55 | updateTransparent(); | ||
56 | drawArrow(); | 55 | drawArrow(); |
57 | } | 56 | } |
58 | 57 | ||
59 | void ArrowButton::exposeEvent(XExposeEvent &event) { | 58 | void ArrowButton::exposeEvent(XExposeEvent &event) { |
60 | FbTk::Button::exposeEvent(event); | 59 | FbTk::Button::exposeEvent(event); |
61 | updateTransparent(event.x, event.y, event.width, event.height); | ||
62 | drawArrow(); | 60 | drawArrow(); |
63 | } | 61 | } |
64 | 62 | ||