Merge pull request #2938 from thejch/click-special
commit
197bc6a877
|
@ -1001,19 +1001,21 @@ std::string &Workspace::selectIcon(std::map<std::string, std::string> &icons_map
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Workspace::handleClicked(GdkEventButton *bt) const {
|
bool Workspace::handleClicked(GdkEventButton *bt) const {
|
||||||
try {
|
if (bt->type == GDK_BUTTON_PRESS) {
|
||||||
if (id() > 0) { // normal
|
try {
|
||||||
gIPC->getSocket1Reply("dispatch workspace " + std::to_string(id()));
|
if (id() > 0) { // normal
|
||||||
} else if (!isSpecial()) { // named (this includes persistent)
|
gIPC->getSocket1Reply("dispatch workspace " + std::to_string(id()));
|
||||||
gIPC->getSocket1Reply("dispatch workspace name:" + name());
|
} else if (!isSpecial()) { // named (this includes persistent)
|
||||||
} else if (id() != -99) { // named special
|
gIPC->getSocket1Reply("dispatch workspace name:" + name());
|
||||||
gIPC->getSocket1Reply("dispatch togglespecialworkspace " + name());
|
} else if (id() != -99) { // named special
|
||||||
} else { // special
|
gIPC->getSocket1Reply("dispatch togglespecialworkspace " + name());
|
||||||
gIPC->getSocket1Reply("dispatch togglespecialworkspace");
|
} else { // special
|
||||||
|
gIPC->getSocket1Reply("dispatch togglespecialworkspace");
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
} catch (const std::exception &e) {
|
||||||
|
spdlog::error("Failed to dispatch workspace: {}", e.what());
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
} catch (const std::exception &e) {
|
|
||||||
spdlog::error("Failed to dispatch workspace: {}", e.what());
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue