aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 3b2d11a..0b46c07 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -480,7 +480,7 @@ void FluxboxWindow::init() {
480 int real_y = frame().y(); 480 int real_y = frame().y();
481 481
482 if (real_x >= 0 && 482 if (real_x >= 0 &&
483 real_y + frame().y() >= 0 && 483 real_y >= 0 &&
484 real_x <= (signed) screen().width() && 484 real_x <= (signed) screen().width() &&
485 real_y <= (signed) screen().height()) 485 real_y <= (signed) screen().height())
486 place_window = false; 486 place_window = false;