summaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-18 05:14:18 +0000
committerDana Jansens <danakj@orodu.net>2002-07-18 05:14:18 +0000
commit5b0751d51efddc14176734ab6740ecf9400dbaa8 (patch)
treecc5ef109fc96c29e111399e89799b662b7305910 /src/Screen.cc
parent0a9da781402101b450b575c9ce0b20e651aa27a3 (diff)
move the checkmarks to the opposite side of the bullets. This means they still can be used in the workspace menu for the focused workspace.
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index c1f8532f..e0ef585f 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -231,7 +231,7 @@ BScreen::BScreen(Blackbox *bb, unsigned int scrn) : ScreenInfo(bb, scrn) {
xatom->setValue(getRootWindow(), XAtom::net_current_desktop,
XAtom::cardinal, 0); //first workspace
- //workspacemenu->setItemSelected(2, True);
+ workspacemenu->setItemSelected(2, True);
toolbar = new Toolbar(this);
@@ -1063,14 +1063,14 @@ void BScreen::changeWorkspaceID(unsigned int id) {
blackbox->setFocusedWindow((BlackboxWindow *) 0);
current_workspace->hideAll();
- //workspacemenu->setItemSelected(current_workspace->getID() + 2, False);
+ workspacemenu->setItemSelected(current_workspace->getID() + 2, False);
current_workspace = getWorkspace(id);
xatom->setValue(getRootWindow(), XAtom::net_current_desktop,
XAtom::cardinal, id);
- //workspacemenu->setItemSelected(current_workspace->getID() + 2, True);
+ workspacemenu->setItemSelected(current_workspace->getID() + 2, True);
toolbar->redrawWorkspaceLabel(True);
current_workspace->showAll();