diff options
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index 6377da7..c48a6ff 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -1789,7 +1789,7 @@ void FluxboxWindow::stick() { | |||
1789 | 1789 | ||
1790 | void FluxboxWindow::raise() { | 1790 | void FluxboxWindow::raise() { |
1791 | if (isIconic()) | 1791 | if (isIconic()) |
1792 | deiconify(); | 1792 | return;; |
1793 | #ifdef DEBUG | 1793 | #ifdef DEBUG |
1794 | cerr<<"FluxboxWindow("<<title()<<")::raise()[layer="<<layerNum()<<"]"<<endl; | 1794 | cerr<<"FluxboxWindow("<<title()<<")::raise()[layer="<<layerNum()<<"]"<<endl; |
1795 | #endif // DEBUG | 1795 | #endif // DEBUG |
@@ -1817,7 +1817,7 @@ void FluxboxWindow::raise() { | |||
1817 | 1817 | ||
1818 | void FluxboxWindow::lower() { | 1818 | void FluxboxWindow::lower() { |
1819 | if (isIconic()) | 1819 | if (isIconic()) |
1820 | deiconify(); | 1820 | return; |
1821 | #ifdef DEBUG | 1821 | #ifdef DEBUG |
1822 | cerr<<"FluxboxWindow("<<title()<<")::lower()"<<endl; | 1822 | cerr<<"FluxboxWindow("<<title()<<")::lower()"<<endl; |
1823 | #endif // DEBUG | 1823 | #endif // DEBUG |