aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-05-08 02:20:52 (GMT)
committerrathnor <rathnor>2003-05-08 02:20:52 (GMT)
commita7a178589992eeece8939dd179c0d5f0032002c4 (patch)
treeb70cecb3f42d15ffece0af8a9c89ef5f3a652009
parent65fc419175e4e63013f97a8c72df3bb373052c97 (diff)
downloadfluxbox_pavel-a7a178589992eeece8939dd179c0d5f0032002c4.zip
fluxbox_pavel-a7a178589992eeece8939dd179c0d5f0032002c4.tar.bz2
fix silly mistake in widow move layers
-rw-r--r--src/Window.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc
index b6a80ba..fb07764 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Window.cc,v 1.162 2003/05/08 01:51:18 rathnor Exp $ 25// $Id: Window.cc,v 1.163 2003/05/08 02:20:52 rathnor Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -1565,7 +1565,7 @@ void FluxboxWindow::moveToLayer(int layernum) {
1565 if (!win->isIconic()) { 1565 if (!win->isIconic()) {
1566 screen.updateNetizenWindowRaise(client->window()); 1566 screen.updateNetizenWindowRaise(client->window());
1567 } 1567 }
1568 win->getLayerItem().lowerLayer(); 1568 win->getLayerItem().moveToLayer(layernum);
1569 // remember number just in case a transient happens to revisit this window 1569 // remember number just in case a transient happens to revisit this window
1570 layernum = win->getLayerItem().getLayerNum(); 1570 layernum = win->getLayerItem().getLayerNum();
1571 win->setLayerNum(layernum); 1571 win->setLayerNum(layernum);