all repos — openbox @ c5c5a80c7e9146e0c53f866c1ddbc2c352f4dcea

openbox fork - make it a bit more like ryudo

fix bug from merging last netwm stuff
Dana Jansens danakj@orodu.net
commit

c5c5a80c7e9146e0c53f866c1ddbc2c352f4dcea

parent

5336c900d07804589600c8af9d838c12dec7ab1c

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M src/Screen.ccsrc/Screen.cc

@@ -1117,9 +1117,6 @@ }

} - xatom->setValue(getRootWindow(), XAtom::net_number_of_desktops, - XAtom::cardinal, workspacesList.size()); - void BScreen::updateNetizenCurrentWorkspace(void) { std::for_each(netizenList.begin(), netizenList.end(), std::mem_fun(&Netizen::sendCurrentWorkspace));

@@ -1127,6 +1124,9 @@ }

void BScreen::updateNetizenWorkspaceCount(void) { + xatom->setValue(getRootWindow(), XAtom::net_number_of_desktops, + XAtom::cardinal, workspacesList.size()); + std::for_each(netizenList.begin(), netizenList.end(), std::mem_fun(&Netizen::sendWorkspaceCount)); }