aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkt <markt>2007-02-23 22:16:11 (GMT)
committermarkt <markt>2007-02-23 22:16:11 (GMT)
commit002e6232c99bda93aaed8f97ef1b33184f2c9fba (patch)
tree920e54512e0ff03cd0d01813591115c37f420089
parentca7b5ee4a59ea18fd832b11040f63bcc0d8404ab (diff)
downloadfluxbox-002e6232c99bda93aaed8f97ef1b33184f2c9fba.zip
fluxbox-002e6232c99bda93aaed8f97ef1b33184f2c9fba.tar.bz2
send statesig when maximizing/restoring a window
-rw-r--r--ChangeLog2
-rw-r--r--src/Window.cc3
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f2648b..8a9fcee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.0rc3: 2Changes 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