diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Window.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index 11ddf39..b09498d 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -3483,9 +3483,10 @@ void FluxboxWindow::attachTo(int x, int y, bool interrupted) { | |||
3483 | detachClient(*old_attached); | 3483 | detachClient(*old_attached); |
3484 | // move window by relative amount of mouse movement | 3484 | // move window by relative amount of mouse movement |
3485 | // since just detached, move relative to old location | 3485 | // since just detached, move relative to old location |
3486 | if (client.m_win != 0) | 3486 | if (client.m_win != 0) { |
3487 | client.m_win->move(frame().x() - m_last_resize_x + x, frame().y() - m_last_resize_y + y); | 3487 | client.m_win->move(frame().x() - m_last_resize_x + x, frame().y() - m_last_resize_y + y); |
3488 | 3488 | client.m_win->show(); | |
3489 | } | ||
3489 | } | 3490 | } |
3490 | else if(attach_to_win==this && attach_to_win->isTabable()) { | 3491 | else if(attach_to_win==this && attach_to_win->isTabable()) { |
3491 | //reording of tabs within a frame | 3492 | //reording of tabs within a frame |