From 3bf711b5292dd8533659dfd10857869f47e97034 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 3 Oct 2012 09:41:10 +0000 Subject: [PATCH] block going to parent directory on desktop using backspace key when desktop navigation is not enabled SVN revision: 77359 --- src/bin/e_fm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index 378bc2001..e47cf47df 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -7527,8 +7527,9 @@ _e_fm2_cb_key_down(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event /* typebuf mode: backspace */ if (sd->typebuf_visible) _e_fm2_typebuf_char_backspace(obj); - else + else if (!sd->config->view.no_typebuf_set) { + /* only allow this action when typebuf navigation is allowed in config */ if (e_fm2_has_parent_get(obj)) e_fm2_parent_go(obj); }