aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommandFactory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbCommandFactory.cc')
-rw-r--r--src/FbCommandFactory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbCommandFactory.cc b/src/FbCommandFactory.cc
index 8ff92ab..5c0794e 100644
--- a/src/FbCommandFactory.cc
+++ b/src/FbCommandFactory.cc
@@ -284,7 +284,7 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command,
284 return new SendToNextWorkspaceCmd(atoi(arguments.c_str())); 284 return new SendToNextWorkspaceCmd(atoi(arguments.c_str()));
285 else if (command == "sendtoprevworkspace") 285 else if (command == "sendtoprevworkspace")
286 return new SendToPrevWorkspaceCmd(atoi(arguments.c_str())); 286 return new SendToPrevWorkspaceCmd(atoi(arguments.c_str()));
287 else if (command == "killwindow") 287 else if (command == "killwindow" || command == "kill")
288 return new KillWindowCmd(); 288 return new KillWindowCmd();
289 else if (command == "nexttab") 289 else if (command == "nexttab")
290 return new CurrentWindowCmd(&FluxboxWindow::nextClient); 290 return new CurrentWindowCmd(&FluxboxWindow::nextClient);