mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
apprt/glfw: return false for unimplemented actions
This commit is contained in:
@ -239,7 +239,10 @@ pub const App = struct {
|
|||||||
.pwd,
|
.pwd,
|
||||||
.config_change,
|
.config_change,
|
||||||
.toggle_maximize,
|
.toggle_maximize,
|
||||||
=> log.info("unimplemented action={}", .{action}),
|
=> {
|
||||||
|
log.info("unimplemented action={}", .{action});
|
||||||
|
return false;
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user