File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -330,10 +330,8 @@ static gboolean fl_view_motion_notify_event(GtkWidget* widget,
330
330
static gboolean fl_view_key_press_event (GtkWidget* widget, GdkEventKey* event) {
331
331
FlView* self = FL_VIEW (widget);
332
332
333
- if (fl_text_input_plugin_filter_keypress (self->text_input_plugin , event))
334
- return TRUE ;
335
-
336
333
fl_key_event_plugin_send_key_event (self->key_event_plugin , event);
334
+ fl_text_input_plugin_filter_keypress (self->text_input_plugin , event);
337
335
338
336
return TRUE ;
339
337
}
@@ -343,10 +341,8 @@ static gboolean fl_view_key_release_event(GtkWidget* widget,
343
341
GdkEventKey* event) {
344
342
FlView* self = FL_VIEW (widget);
345
343
346
- if (fl_text_input_plugin_filter_keypress (self->text_input_plugin , event))
347
- return TRUE ;
348
-
349
344
fl_key_event_plugin_send_key_event (self->key_event_plugin , event);
345
+ fl_text_input_plugin_filter_keypress (self->text_input_plugin , event);
350
346
351
347
return TRUE ;
352
348
}
You can’t perform that action at this time.
0 commit comments