summaryrefslogtreecommitdiff
path: root/src/imlib.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-11-04 22:07:22 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-11-04 22:07:22 +0100
commit1c36c74c8ff5ad9768c854a2d88fa66fa9fe148f (patch)
tree208663176e535e48a7c60f4101e807f5acd1467c /src/imlib.c
parent73c11d8aac91ebf71803c57be333ab9559aaa3f1 (diff)
Disable in-place editing by default
Diffstat (limited to 'src/imlib.c')
-rw-r--r--src/imlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imlib.c b/src/imlib.c
index 2c04128..a48d654 100644
--- a/src/imlib.c
+++ b/src/imlib.c
@@ -1204,7 +1204,7 @@ void feh_edit_inplace(winwidget w, int op)
if (!w->file || !w->file->data || !FEH_FILE(w->file->data)->filename)
return;
- if (opt.no_inplace_edit) {
+ if (!opt.edit) {
imlib_context_set_image(w->im);
if (op == INPLACE_EDIT_FLIP)
imlib_image_flip_vertical();