netstar pushed a commit to branch master. http://git.enlightenment.org/apps/edi.git/commit/?id=e402ed997ebc3786a1d5088cef2951849b7e675c
commit e402ed997ebc3786a1d5088cef2951849b7e675c Author: Alastair Poole <nets...@gmail.com> Date: Mon Aug 10 13:11:45 2020 +0100 mainview: fix bug when key-comb switching tabs. We need to ensure we focus the editor itself as well as the tab here. This fixues an issue with cursor show/hide with focus and unfocus. --- src/bin/mainview/edi_mainview_panel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/mainview/edi_mainview_panel.c b/src/bin/mainview/edi_mainview_panel.c index 83da9ed..6a64f13 100644 --- a/src/bin/mainview/edi_mainview_panel.c +++ b/src/bin/mainview/edi_mainview_panel.c @@ -371,6 +371,7 @@ edi_mainview_panel_item_select(Edi_Mainview_Panel *panel, Edi_Mainview_Item *ite } edi_mainview_panel_focus(panel); + _edi_mainview_panel_current_tab_show(panel); ecore_event_add(EDI_EVENT_TAB_CHANGED, NULL, NULL, NULL); } --