diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/Window.cc | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *07/02/23: | 3 | *07/02/23: |
4 | * Update EWMH state atom when maximizing windows (Mark) | ||
5 | Window.cc | ||
4 | * Update titlebar buttons on reconfigure (Mark) | 6 | * Update titlebar buttons on reconfigure (Mark) |
5 | Window.cc/hh | 7 | Window.cc/hh |
6 | *07/02/22: | 8 | *07/02/22: |
diff --git a/src/Window.cc b/src/Window.cc index ba6fe6d..27992f0 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -1743,6 +1743,9 @@ void FluxboxWindow::maximize(int type) { | |||
1743 | m_resize_corner = old_resize_corner; | 1743 | m_resize_corner = old_resize_corner; |
1744 | 1744 | ||
1745 | moveResize(m_last_resize_x, m_last_resize_y, m_last_resize_w, m_last_resize_h); | 1745 | moveResize(m_last_resize_x, m_last_resize_y, m_last_resize_w, m_last_resize_h); |
1746 | |||
1747 | // notify listeners that we changed state | ||
1748 | stateSig().notify(); | ||
1746 | } | 1749 | } |
1747 | /** | 1750 | /** |
1748 | * Maximize window horizontal | 1751 | * Maximize window horizontal |