diff options
author | Boris Faure <billiob@gmail.com> | 2015-06-03 23:03:07 +0200 |
---|---|---|
committer | Boris Faure <billiob@gmail.com> | 2015-06-03 23:03:07 +0200 |
commit | 566033f78d49cc77675116806a527178677dcf7c (patch) | |
tree | 4482b48fb655c8ab7d3488a0fe995c4b3d92f1f6 /src | |
parent | 681bb029c232fd162a7be9acea1d60074808f2f8 (diff) |
do not remove links when there is a popup due to such link
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/termio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/termio.c b/src/bin/termio.c index 36796c3..b44e01c 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c | |||
@@ -3422,7 +3422,8 @@ _smart_cb_focus_out(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, | |||
3422 | ecore_imf_context_focus_out(sd->khdl.imf); | 3422 | ecore_imf_context_focus_out(sd->khdl.imf); |
3423 | ecore_imf_context_input_panel_hide(sd->khdl.imf); | 3423 | ecore_imf_context_input_panel_hide(sd->khdl.imf); |
3424 | } | 3424 | } |
3425 | _remove_links(sd, obj); | 3425 | if (!sd->ctxpopup) |
3426 | _remove_links(sd, obj); | ||
3426 | term_unfocus(sd->term); | 3427 | term_unfocus(sd->term); |
3427 | } | 3428 | } |
3428 | 3429 | ||