Re: [e-users] IBar miniview problem - DEBUG
Quelrond <[email protected]>
| Newsgroups | gmane.comp.window-managers.enlightenment.user |
|---|---|
| Message-ID | <[email protected]> |
Nope, it does not change anything. Anyway, I tried to move the line _ibar_icon_signal_emit(ic, "e,state,focused", "e"); from _ibar_cb_icon_mouse_in to _ibar_icon_mouse_in_timer - it does not change anything if it was called /before/ _ibar_icon_menu_show, but everything works correctly if it was called /after/ _ibar_icon_menu_show. So the 'focused' effect prevents the menu from being shown. BTW, it is briefly shown in any case when I move the pointer out of the icon, so it becomes unfocused. Peter On 02/11/2022 11:37, Carsten Haitzler wrote: > can i ask you to change: > > ic->show_timer = ecore_timer_loop_add(0.2, _ibar_icon_mouse_in_timer, ic); > > to > > ic->show_timer = ecore_timer_add(0.2, _ibar_icon_mouse_in_timer, ic); > > ? perhaps change the other ecore_timer_loop_add() calls to ecore_timer_add() ?