diff options
author | akir <akir> | 2004-09-30 18:45:26 (GMT) |
---|---|---|
committer | akir <akir> | 2004-09-30 18:45:26 (GMT) |
commit | be19b59d0f3403ed050d86eb94f0e5a9f8d58ae1 (patch) | |
tree | f301170b3c175d5e7f969a6608fdfc719e3388d2 /src | |
parent | 65efcc289b3e07c4d599f8ce38dcbc98212c3e45 (diff) | |
download | fluxbox-be19b59d0f3403ed050d86eb94f0e5a9f8d58ae1.zip fluxbox-be19b59d0f3403ed050d86eb94f0e5a9f8d58ae1.tar.bz2 |
title of current tab-window is now shown in the iconbar-buttons
Diffstat (limited to 'src')
-rw-r--r-- | src/Window.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index a110686..2185a2b 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.299 2004/09/11 12:33:14 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.300 2004/09/30 18:45:26 akir Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -952,6 +952,7 @@ bool FluxboxWindow::setCurrentClient(WinClient &client, bool setinput) { | |||
952 | 952 | ||
953 | m_client = &client; | 953 | m_client = &client; |
954 | m_client->raise(); | 954 | m_client->raise(); |
955 | titleSig().notify(); | ||
955 | 956 | ||
956 | #ifdef DEBUG | 957 | #ifdef DEBUG |
957 | cerr<<"FluxboxWindow::"<<__FUNCTION__<<": labelbutton[client] = "<< | 958 | cerr<<"FluxboxWindow::"<<__FUNCTION__<<": labelbutton[client] = "<< |
@@ -2267,7 +2268,7 @@ void FluxboxWindow::propertyNotifyEvent(WinClient &client, Atom atom) { | |||
2267 | client.updateIconTitle(); | 2268 | client.updateIconTitle(); |
2268 | case XA_WM_NAME: | 2269 | case XA_WM_NAME: |
2269 | updateTitleFromClient(client); | 2270 | updateTitleFromClient(client); |
2270 | m_titlesig.notify(); | 2271 | titleSig().notify(); |
2271 | break; | 2272 | break; |
2272 | 2273 | ||
2273 | case XA_WM_NORMAL_HINTS: { | 2274 | case XA_WM_NORMAL_HINTS: { |