diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/CurrentWindowCmd.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CurrentWindowCmd.cc b/src/CurrentWindowCmd.cc index f6b38aa..084362b 100644 --- a/src/CurrentWindowCmd.cc +++ b/src/CurrentWindowCmd.cc | |||
@@ -143,11 +143,11 @@ void MoveToCmd::real_execute() { | |||
143 | const int head = fbwindow().screen().getHead(fbwindow().fbWindow()); | 143 | const int head = fbwindow().screen().getHead(fbwindow().fbWindow()); |
144 | 144 | ||
145 | if (m_refc & MoveToCmd::LOWER) | 145 | if (m_refc & MoveToCmd::LOWER) |
146 | y = fbwindow().screen().maxBottom(head) - fbwindow().height() - m_step_size_y; | 146 | y = fbwindow().screen().maxBottom(head) - fbwindow().height() - 2 * fbwindow().frame().window().borderWidth() - m_step_size_y; |
147 | if (m_refc & MoveToCmd::UPPER) | 147 | if (m_refc & MoveToCmd::UPPER) |
148 | y = fbwindow().screen().maxTop(head) + m_step_size_y; | 148 | y = fbwindow().screen().maxTop(head) + m_step_size_y; |
149 | if (m_refc & MoveToCmd::RIGHT) | 149 | if (m_refc & MoveToCmd::RIGHT) |
150 | x = fbwindow().screen().maxRight(head) - fbwindow().width() - m_step_size_x; | 150 | x = fbwindow().screen().maxRight(head) - fbwindow().width() - 2 * fbwindow().frame().window().borderWidth() - m_step_size_x; |
151 | if (m_refc & MoveToCmd::LEFT) | 151 | if (m_refc & MoveToCmd::LEFT) |
152 | x = fbwindow().screen().maxLeft(head) + m_step_size_x; | 152 | x = fbwindow().screen().maxLeft(head) + m_step_size_x; |
153 | 153 | ||