diff options
author | markt <markt> | 2007-04-18 18:12:29 (GMT) |
---|---|---|
committer | markt <markt> | 2007-04-18 18:12:29 (GMT) |
commit | 622d75f6429ebeb949b13d68c1ca188d7b5c8093 (patch) | |
tree | e71bdcd24b855890cfa5dc91e5121da1f0580aac /src | |
parent | 6ac57655d9b0cf02d449aa9a01c7a82f5f3bbffa (diff) | |
download | fluxbox_paul-622d75f6429ebeb949b13d68c1ca188d7b5c8093.zip fluxbox_paul-622d75f6429ebeb949b13d68c1ca188d7b5c8093.tar.bz2 |
fix for fbsetbg -l when last wallpaper was using fbsetroot
Diffstat (limited to 'src')
-rw-r--r-- | src/Window.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index 6c7cf11..a6fff7c 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -472,7 +472,7 @@ void FluxboxWindow::init() { | |||
472 | int real_y = frame().y(); | 472 | int real_y = frame().y(); |
473 | 473 | ||
474 | if (real_x >= 0 && | 474 | if (real_x >= 0 && |
475 | real_y + frame().y() >= 0 && | 475 | real_y >= 0 && |
476 | real_x <= (signed) screen().width() && | 476 | real_x <= (signed) screen().width() && |
477 | real_y <= (signed) screen().height()) | 477 | real_y <= (signed) screen().height()) |
478 | place_window = false; | 478 | place_window = false; |