diff options
author | fluxgen <fluxgen> | 2003-09-10 11:19:39 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-09-10 11:19:39 (GMT) |
commit | d93bedd844bdc2faf9318eb2cf1eb8d33788ffc0 (patch) | |
tree | 896adeaab45208c59c86ee21113fca832ce62d20 /src | |
parent | a992dec03ce64d916a9202cb6c533cb60e922367 (diff) | |
download | fluxbox_pavel-d93bedd844bdc2faf9318eb2cf1eb8d33788ffc0.zip fluxbox_pavel-d93bedd844bdc2faf9318eb2cf1eb8d33788ffc0.tar.bz2 |
fixed expose event
Diffstat (limited to 'src')
-rw-r--r-- | src/FbTk/Button.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbTk/Button.cc b/src/FbTk/Button.cc index 5e3c0ec..880d6ce 100644 --- a/src/FbTk/Button.cc +++ b/src/FbTk/Button.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: Button.cc,v 1.13 2003/09/08 15:37:37 fluxgen Exp $ | 22 | // $Id: Button.cc,v 1.14 2003/09/10 11:19:39 fluxgen Exp $ |
23 | 23 | ||
24 | #include "Button.hh" | 24 | #include "Button.hh" |
25 | 25 | ||
@@ -131,7 +131,7 @@ void Button::exposeEvent(XExposeEvent &event) { | |||
131 | FbWindow::setBackgroundColor(m_background_color); | 131 | FbWindow::setBackgroundColor(m_background_color); |
132 | 132 | ||
133 | clear(); | 133 | clear(); |
134 | FbWindow::updateTransparent(event.x, event.y, event.width, event.height); | 134 | FbWindow::updateTransparent(); |
135 | } | 135 | } |
136 | 136 | ||
137 | }; // end namespace FbTk | 137 | }; // end namespace FbTk |