all repos — fluxbox @ 330c8c0b09f10effa9a80245a99dde691a9bc501

custom fork of the fluxbox windowmanager

moved all focus handling to class FocusControl
fluxgen fluxgen
commit

330c8c0b09f10effa9a80245a99dde691a9bc501

parent

4d52797b955b8e38b9e49802981e69fb34a734bc

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

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

@@ -374,17 +374,17 @@ return new NextWindowCmd(atoi(arguments.c_str()));

else if (command == "prevwindow") return new PrevWindowCmd(atoi(arguments.c_str())); else if (command == "focusup") - return new DirFocusCmd(BScreen::FOCUSUP); + return new DirFocusCmd(FocusControl::FOCUSUP); else if (command == "focusdown") - return new DirFocusCmd(BScreen::FOCUSDOWN); + return new DirFocusCmd(FocusControl::FOCUSDOWN); else if (command == "focusleft") - return new DirFocusCmd(BScreen::FOCUSLEFT); + return new DirFocusCmd(FocusControl::FOCUSLEFT); else if (command == "focusright") - return new DirFocusCmd(BScreen::FOCUSRIGHT); + return new DirFocusCmd(FocusControl::FOCUSRIGHT); else if (command == "nextgroup") - return new NextWindowCmd(atoi(arguments.c_str()) ^ BScreen::CYCLEGROUPS); + return new NextWindowCmd(atoi(arguments.c_str()) ^ FocusControl::CYCLEGROUPS); else if (command == "prevgroup") - return new PrevWindowCmd(atoi(arguments.c_str()) ^ BScreen::CYCLEGROUPS); + return new PrevWindowCmd(atoi(arguments.c_str()) ^ FocusControl::CYCLEGROUPS); else if (command == "arrangewindows") return new ArrangeWindowsCmd(); else if (command == "showdesktop")