Re: [e-users] IBar miniview problem - DEBUG

2022-11-02 Thread Quelrond
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 w

Re: [e-users] IBar miniview problem - DEBUG

2022-11-02 Thread Carsten Haitzler
On Mon, 24 Oct 2022 19:07:14 +0200 Quelrond said: there is something timer based here... almist like the show timer never gets call. 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, _ib

Re: [e-users] IBar miniview problem - DEBUG

2022-10-30 Thread daniel antoine
I am sorry I can't help you a lot . I have tried to find on the web about freebsd and the propiarity nvidia driver 390 . Some people say to use the driver 340 instead when the card is very old. My question about the mesa version was because when I upgraded mesa to version 21.3.7 I got guru error w

Re: [e-users] IBar miniview problem - DEBUG

2022-10-29 Thread Quelrond Q
mesa 21.3.8 But it seems that the problem is really in NVIDIA driver 390 - on another host I have the same version of mesa installed, but other version of NVIDIA driver (470) - the problem is not observed there. Unfortunately, I cannot upgrade the driver on my laptop - the NVIDIA chip is too ol

Re: [e-users] IBar miniview problem - DEBUG

2022-10-29 Thread daniel antoine
What is your mesa version ? Le sam. 29 oct. 2022 à 11:38, Quelrond Q a écrit : > > How can I test/debug it? > > > > Le 29 oct. 2022 à 10:34, daniel antoine a écrit : > > > > a mesa version problem ? > > > > Le jeu. 27 oct. 2022 à 22:19, Quelrond a écrit : > >> > >> So... I tried to: > >> > >> -

Re: [e-users] IBar miniview problem - DEBUG

2022-10-29 Thread Quelrond Q
How can I test/debug it? > Le 29 oct. 2022 à 10:34, daniel antoine a écrit : > > a mesa version problem ? > > Le jeu. 27 oct. 2022 à 22:19, Quelrond a écrit : >> >> So... I tried to: >> >> - build E 0.25.4 with EFL 1.26.2 >> >> - build E 0.25.3 with EFL 1.26.3 >> >> - build E 0.25.3 with

Re: [e-users] IBar miniview problem - DEBUG

2022-10-29 Thread daniel antoine
a mesa version problem ? Le jeu. 27 oct. 2022 à 22:19, Quelrond a écrit : > > So... I tried to: > > - build E 0.25.4 with EFL 1.26.2 > > - build E 0.25.3 with EFL 1.26.3 > > - build E 0.25.3 with EFL 1.26.2 > > - remove ~/.e folder > > - remove ~/.elementary folder > > /No way/ to get the menu ba

Re: [e-users] IBar miniview problem - DEBUG

2022-10-27 Thread Quelrond
So... I tried to: - build E 0.25.4 with EFL 1.26.2 - build E 0.25.3 with EFL 1.26.3 - build E 0.25.3 with EFL 1.26.2 - remove ~/.e folder - remove ~/.elementary folder /No way/ to get the menu back!! So, I tried to search in other areas, and I've got the menu back after changing rendering

Re: [e-users] IBar miniview problem - DEBUG

2022-10-24 Thread Quelrond
I forced the coordinates of the menu to (100, 100) in _ibar_icon_menu_recalc, replacing the evas_object_move(ic->menu->comp_object, ox, oy); by evas_object_move(ic->menu->comp_object, 100, 100); It does not change anything - the menu is shown or not shown at the defined place, but when it is

Re: [e-users] IBar miniview problem - DEBUG

2022-10-22 Thread Carsten Haitzler
On Sat, 22 Oct 2022 11:00:21 +0200 Quelrond Q said: > > > > Le 22 oct. 2022 à 09:49, Carsten Haitzler a écrit : > > > > that is odd... the menu is shown.. but you don't see it? something must be > > hiding it... but what? > > What if the menu is hidden by this overlay that makes 'focused' ef

Re: [e-users] IBar miniview problem - DEBUG

2022-10-22 Thread Quelrond Q
> Le 22 oct. 2022 à 09:49, Carsten Haitzler a écrit : > > that is odd... the menu is shown.. but you don't see it? something must be > hiding it... but what? What if the menu is hidden by this overlay that makes 'focused' effect on the icon? > FYI i just don't see the problem here so it's h

Re: [e-users] IBar miniview problem - DEBUG

2022-10-22 Thread Carsten Haitzler
On Fri, 21 Oct 2022 20:38:43 +0200 Quelrond said: > It does not seem to be a case. > > I move mouse pointer into an IBar icon, it stays there about 10 seconds, > then I move it out. The call sequence (with timings) is as follows: > > 1666376906 _ibar_cb_icon_mouse_in > 1666376907 _ibar_icon_mo

Re: [e-users] IBar miniview problem - DEBUG

2022-10-21 Thread Quelrond
It does not seem to be a case. I move mouse pointer into an IBar icon, it stays there about 10 seconds, then I move it out. The call sequence (with timings) is as follows: 1666376906 _ibar_cb_icon_mouse_in 1666376907 _ibar_icon_mouse_in_timer 1666376907 _ibar_icon_menu_show 1666376918 _ibar_cb

Re: [e-users] IBar miniview problem - DEBUG

2022-10-17 Thread Carsten Haitzler
On Mon, 17 Oct 2022 20:49:54 +0200 Quelrond said: > The mouse in/out events don't give any interesting information here. > > The key factor is the order of showing menu and emitting 'focused' signal. they should give some interesting info. focused causes the extra overlay object to appear and t

Re: [e-users] IBar miniview problem - DEBUG

2022-10-17 Thread Quelrond
The mouse in/out events don't give any interesting information here. The key factor is the order of showing menu and emitting 'focused' signal. If I move _ibar_icon_signal_emit(ic, "e,state,focused", "e") into _ibar_icon_mouse_in_timer function /AFTER/ _ibar_icon_menu_show - everything works a

Re: [e-users] IBar miniview problem - DEBUG

2022-10-15 Thread Carsten Haitzler
On Sat, 15 Oct 2022 14:41:02 +0200 Quelrond Q said: > > > > Le 15 oct. 2022 à 09:55, Carsten Haitzler a écrit : > > > > On Thu, 13 Oct 2022 19:51:12 +0200 Quelrond > > said: > > > >> After some debugging: > >> > >> If in /src/modules/ibar/e_mod_main.c/ > >> > >>

Re: [e-users] IBar miniview problem - DEBUG

2022-10-15 Thread Quelrond Q
> Le 15 oct. 2022 à 09:55, Carsten Haitzler a écrit : > > On Thu, 13 Oct 2022 19:51:12 +0200 Quelrond > said: > >> After some debugging: >> >> If in /src/modules/ibar/e_mod_main.c/ >> >> in function /_ibar_cb_icon_mouse_in/ >> >> I comment out the line 1513: >>

Re: [e-users] IBar miniview problem - DEBUG

2022-10-15 Thread Carsten Haitzler
On Thu, 13 Oct 2022 19:51:12 +0200 Quelrond said: > After some debugging: > > If in /src/modules/ibar/e_mod_main.c/ > > in function /_ibar_cb_icon_mouse_in/ > > I comment out the line 1513: > > /_ibar_icon_signal_emit(ic, "e,state,focused", "e");/ > > everything works as expected (but I have

Re: [e-users] IBar miniview problem - DEBUG

2022-10-14 Thread Simon Lees
Hi, I'll just confirm i've also seen this issue but id never figured out how to reproduce it as well as you've outlined here i'm also strugging to now reproduce it on the theme i'm using atm, (this might be because I have extra spacing around the icons in ibar. On 10/14/22 04:21, Quelrond wr

[e-users] IBar miniview problem - DEBUG

2022-10-13 Thread Quelrond
After some debugging: If in /src/modules/ibar/e_mod_main.c/ in function /_ibar_cb_icon_mouse_in/ I comment out the line 1513: /_ibar_icon_signal_emit(ic, "e,state,focused", "e");/ everything works as expected (but I have no nice effect of active IBar icon). So, probably in 'focused' state

[e-users] IBar miniview problem

2022-10-13 Thread Quelrond
Hello, Since update of EFL and Enlightenment to the last release versions (EFL 1.26.3 and E 0.25.4) I have a problem of miniviews of IBar. In previous versions the miniviews were shown on mouse over the application icon. Now there are application names only, miniviews are shown on mouse over