This commit is contained in:
end-4 2023-01-23 21:05:56 +07:00
parent c86deba103
commit e94d514916
3 changed files with 0 additions and 8 deletions

View file

@ -187,12 +187,6 @@ void KeybindManager::movetoworkspace(std::string arg) {
try {
if (arg == "scratchpad")
g_pWindowManager->moveActiveWindowToWorkspace(SCRATCHPAD_ID);
// else if (arg[0] == '+')
// arg.erase(0, 1);
// g_pWindowManager->moveActiveWindowToWorkspace(stoi(arg)+1);
// else if (arg[0] == '-')
// arg.erase(0, 1);
// g_pWindowManager->moveActiveWindowToWorkspace(stoi(arg)-1);
else
g_pWindowManager->moveActiveWindowToWorkspace(stoi(arg));
} catch (...) {

View file

@ -11,7 +11,6 @@
#include <string.h>
#include <iostream>
// Default values
void ConfigManager::init() {
configValues["border_size"].intValue = 1;
configValues["gaps_in"].intValue = 5;

View file

@ -99,7 +99,6 @@ public:
void toggleWindowFullscrenn(const int&);
void recalcAllDocks();
void relativeWorkspace(int);
void changeWorkspaceByID(int);
void changeToLastWorkspace();
void setAllWorkspaceWindowsDirtyByID(int);