Skip to content

Commit

Permalink
caja-window: Fix: mouse doesn't work with [ctrl] + [.] or [ctrl] + [;]
Browse files Browse the repository at this point in the history
Fixes #1024
  • Loading branch information
sc0w committed Jul 31, 2018
1 parent 5b20286 commit e740a98
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/caja-window.c
Expand Up @@ -1022,6 +1022,11 @@ static gboolean
caja_window_key_press_event (GtkWidget *widget, caja_window_key_press_event (GtkWidget *widget,
GdkEventKey *event) GdkEventKey *event)
{ {
/* Fix for https://github.com/mate-desktop/caja/issues/1024 */
if ((event->state & GDK_CONTROL_MASK) &&
((event->keyval == '.') || (event->keyval == ';')))
return TRUE;

CajaWindow *window; CajaWindow *window;
int i; int i;


Expand Down

0 comments on commit e740a98

Please sign in to comment.