We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c61fa0a commit ce0b77bCopy full SHA for ce0b77b
1 file changed
src/ConsoleApp.vala
@@ -74,11 +74,14 @@ namespace Ev3devKit {
74
}
75
76
public override bool event (Grx.Event event) {
77
+ if (base.event (event)) {
78
+ return true;
79
+ }
80
if (event.type == Grx.EventType.KEY_DOWN) {
81
Ui.Screen.active_screen.queue_key_code (event.key.keysym);
82
return true;
83
84
return false;
85
86
-}
87
+}
0 commit comments