diff options
author | fluxgen <fluxgen> | 2006-05-13 19:29:55 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2006-05-13 19:29:55 (GMT) |
commit | bd1221a5b26826fb102ea5e99c169ea404415b07 (patch) | |
tree | 72ddb41479f104fe354f2dfd30d9aa134f8008b1 /src/Window.cc | |
parent | e6a107e577f0c494680d6a389bd75d21b532e0cd (diff) | |
download | fluxbox_pavel-bd1221a5b26826fb102ea5e99c169ea404415b07.zip fluxbox_pavel-bd1221a5b26826fb102ea5e99c169ea404415b07.tar.bz2 |
fixed some redraw issues with the title, thanks _markt
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index 60ecaca..cbcb1f7 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -1158,6 +1158,8 @@ void FluxboxWindow::updateTitleFromClient(WinClient &client) { | |||
1158 | m_labelbuttons[&client]->setText(client.title()); | 1158 | m_labelbuttons[&client]->setText(client.title()); |
1159 | if (&client == m_client) | 1159 | if (&client == m_client) |
1160 | frame().setFocusTitle(client.title()); | 1160 | frame().setFocusTitle(client.title()); |
1161 | |||
1162 | titleSig().notify(); | ||
1161 | } | 1163 | } |
1162 | } | 1164 | } |
1163 | 1165 | ||
@@ -2515,7 +2517,6 @@ void FluxboxWindow::propertyNotifyEvent(WinClient &client, Atom atom) { | |||
2515 | client.updateIconTitle(); | 2517 | client.updateIconTitle(); |
2516 | case XA_WM_NAME: | 2518 | case XA_WM_NAME: |
2517 | updateTitleFromClient(client); | 2519 | updateTitleFromClient(client); |
2518 | titleSig().notify(); | ||
2519 | break; | 2520 | break; |
2520 | 2521 | ||
2521 | case XA_WM_NORMAL_HINTS: { | 2522 | case XA_WM_NORMAL_HINTS: { |