diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Window.cc | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *06/08/12: | ||
4 | * Fix placement of restored fullscreen windows (Mark) | ||
5 | Window.cc | ||
3 | *06/08/10: | 6 | *06/08/10: |
4 | * Fix crash in ClientPattern when more than one pattern in [app] line (Simon) | 7 | * Fix crash in ClientPattern when more than one pattern in [app] line (Simon) |
5 | ClientPattern.cc | 8 | ClientPattern.cc |
diff --git a/src/Window.cc b/src/Window.cc index 5aebad4..29f8bca 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -1651,6 +1651,7 @@ void FluxboxWindow::setFullscreen(bool flag) { | |||
1651 | m_last_resize_y = m_old_pos_y; | 1651 | m_last_resize_y = m_old_pos_y; |
1652 | m_last_resize_w = m_old_width; | 1652 | m_last_resize_w = m_old_width; |
1653 | m_last_resize_h = m_old_height; | 1653 | m_last_resize_h = m_old_height; |
1654 | m_resize_corner = NOCORNER; | ||
1654 | fixsize(); | 1655 | fixsize(); |
1655 | 1656 | ||
1656 | moveResize(m_last_resize_x, m_last_resize_y, m_last_resize_w, m_last_resize_h); | 1657 | moveResize(m_last_resize_x, m_last_resize_y, m_last_resize_w, m_last_resize_h); |