Merge pull request #2293 from sigboe/master
commit
3bfeed31bc
|
@ -327,7 +327,7 @@ bool Workspaces::handleScroll(GdkEventScroll *e) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!config_["warp-on-scroll"].asBool()) {
|
if (!config_["warp-on-scroll"].isNull() && !config_["warp-on-scroll"].asBool()) {
|
||||||
ipc_.sendCmd(IPC_COMMAND, fmt::format("mouse_warping none"));
|
ipc_.sendCmd(IPC_COMMAND, fmt::format("mouse_warping none"));
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
@ -335,7 +335,7 @@ bool Workspaces::handleScroll(GdkEventScroll *e) {
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
spdlog::error("Workspaces: {}", e.what());
|
spdlog::error("Workspaces: {}", e.what());
|
||||||
}
|
}
|
||||||
if (!config_["warp-on-scroll"].asBool()) {
|
if (!config_["warp-on-scroll"].isNull() && !config_["warp-on-scroll"].asBool()) {
|
||||||
ipc_.sendCmd(IPC_COMMAND, fmt::format("mouse_warping container"));
|
ipc_.sendCmd(IPC_COMMAND, fmt::format("mouse_warping container"));
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue