Merge pull request #2938 from thejch/click-special

This commit is contained in:
Alexis Rouillard 2024-02-20 08:03:16 +01:00 committed by GitHub
commit 197bc6a877
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 12 deletions

View File

@ -1001,6 +1001,7 @@ std::string &Workspace::selectIcon(std::map<std::string, std::string> &icons_map
}
bool Workspace::handleClicked(GdkEventButton *bt) const {
if (bt->type == GDK_BUTTON_PRESS) {
try {
if (id() > 0) { // normal
gIPC->getSocket1Reply("dispatch workspace " + std::to_string(id()));
@ -1015,6 +1016,7 @@ bool Workspace::handleClicked(GdkEventButton *bt) const {
} catch (const std::exception &e) {
spdlog::error("Failed to dispatch workspace: {}", e.what());
}
}
return false;
}