diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/events.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/events.c b/src/events.c index f76de9f..235ad53 100644 --- a/src/events.c +++ b/src/events.c @@ -80,6 +80,7 @@ static void feh_event_handle_ButtonPress(XEvent * ev) winwidget_show_menu(winwid); } } else if ((ev->xbutton.button == opt.rotate_button) + && (winwid->type != WIN_TYPE_THUMBNAIL) && ((opt.no_rotate_ctrl_mask) || (ev->xbutton.state & ControlMask))) { if (winwid != NULL) { @@ -88,6 +89,7 @@ static void feh_event_handle_ButtonPress(XEvent * ev) D(("rotate starting at %d, %d\n", ev->xbutton.x, ev->xbutton.y)); } } else if ((ev->xbutton.button == opt.blur_button) + && (winwid->type != WIN_TYPE_THUMBNAIL) && ((opt.no_blur_ctrl_mask) || (ev->xbutton.state & ControlMask))) { if (winwid != NULL) { |