aboutsummaryrefslogtreecommitdiff
path: root/src/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc')
-rw-r--r--src/ipc/server.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipc/server.rs b/src/ipc/server.rs
index 38a9b3dd..528da716 100644
--- a/src/ipc/server.rs
+++ b/src/ipc/server.rs
@@ -156,7 +156,7 @@ fn process(ctx: &ClientCtx, buf: &str) -> anyhow::Result<Response> {
Request::Action(action) => {
let action = niri_config::Action::from(action);
ctx.event_loop.insert_idle(move |state| {
- state.do_action(action);
+ state.do_action(action, false);
});
Response::Handled
}