apprt/glfw: return false for unimplemented actions
parent
927cb4e622
commit
f26c96d51b
|
|
@ -239,7 +239,10 @@ pub const App = struct {
|
|||
.pwd,
|
||||
.config_change,
|
||||
.toggle_maximize,
|
||||
=> log.info("unimplemented action={}", .{action}),
|
||||
=> {
|
||||
log.info("unimplemented action={}", .{action});
|
||||
return false;
|
||||
},
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue