aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-23 15:46:06 (GMT)
committerfluxgen <fluxgen>2003-08-23 15:46:06 (GMT)
commit92ae6d6a8750c170f324db94c5d3188048bb65ba (patch)
tree5468ca6528d71752fda4356096f0607c51566073
parent0836477c19457381fe5bd4ef4bf9dfcfad000274 (diff)
downloadfluxbox_pavel-92ae6d6a8750c170f324db94c5d3188048bb65ba.zip
fluxbox_pavel-92ae6d6a8750c170f324db94c5d3188048bb65ba.tar.bz2
minor fix
-rw-r--r--src/FbWinFrame.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc
index ed28121..7943c8a 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.38 2003/08/22 15:20:32 fluxgen Exp $ 22// $Id: FbWinFrame.cc,v 1.39 2003/08/23 15:46:06 fluxgen Exp $
23 23
24#include "FbWinFrame.hh" 24#include "FbWinFrame.hh"
25 25
@@ -581,7 +581,7 @@ void FbWinFrame::exposeEvent(XExposeEvent &event) {
581} 581}
582 582
583void FbWinFrame::handleEvent(XEvent &event) { 583void FbWinFrame::handleEvent(XEvent &event) {
584 if (event.type == ConfigureNotify) 584 if (event.type == ConfigureNotify && event.xconfigure.window == window().window())
585 configureNotifyEvent(event.xconfigure); 585 configureNotifyEvent(event.xconfigure);
586} 586}
587 587
@@ -906,7 +906,6 @@ void FbWinFrame::init() {
906 // Note: we don't show clientarea yet 906 // Note: we don't show clientarea yet
907 907
908 setEventHandler(*this); 908 setEventHandler(*this);
909
910 reconfigure(); 909 reconfigure();
911} 910}
912 911