aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 2ac6a01..5fb5d86 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -311,6 +311,7 @@ FluxboxWindow::FluxboxWindow(WinClient &client, FbWinFrameTheme &tm,
311 m_toggled_decos(false), 311 m_toggled_decos(false),
312 m_shaped(false), 312 m_shaped(false),
313 m_icon_hidden(false), 313 m_icon_hidden(false),
314 m_focus_hidden(false),
314 m_old_pos_x(0), m_old_pos_y(0), 315 m_old_pos_x(0), m_old_pos_y(0),
315 m_old_width(1), m_old_height(1), 316 m_old_width(1), m_old_height(1),
316 m_last_button_x(0), m_last_button_y(0), 317 m_last_button_x(0), m_last_button_y(0),
@@ -2073,6 +2074,7 @@ void FluxboxWindow::moveToLayer(int layernum) {
2073} 2074}
2074 2075
2075void FluxboxWindow::setFocusHidden(bool value) { 2076void FluxboxWindow::setFocusHidden(bool value) {
2077 m_focus_hidden = value;
2076 if (isInitialized()) 2078 if (isInitialized())
2077 m_statesig.notify(); 2079 m_statesig.notify();
2078} 2080}