-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Funds needed" info button freaks out #3016
Comments
I have some similar effect with my Debian/Gnome. |
What makes you say that? Most times when I've seen behavior like this, its because the opening of the dialog changes the state that causes the dialog to close, which changes the state causing the dialog to open again. For example, if you have a dialog open under where the mouse is, the mouse may not be recognized as hovering over the "i" element anymore, causing the dialog to close, which causes the mouse to be recognized as hovering over the "i" element again, causing the dialog to open... etc etc. Do you think that's not what's happening? |
It was just a guess from my side. I'm not a java and GUI dev. |
Ugh, this also happens to the "Amount in USD to spend" field's eye-icon in the "Create new offer to buy bitcoin" view, but even worse, there's no position where it won't freak out. |
Provide a wrapper for PopOver components used as tooltips, to debounce the 'MouseEntered' and 'MouseExited' events used to show/hide it, in order to prevent it flickering open/closed in a loop. This fixes bisq-network#3016. To this end, use a ..->HIDDEN->SHOWING->SHOWN->HIDING->.. state field, together with a target visibility boolean field, where the transition between HIDDEN and SHOWN incurs a small fixed delay.
Provide a wrapper for PopOver components used as tooltips, to debounce the 'MouseEntered' and 'MouseExited' events used to show/hide it, in order to prevent it flickering open/closed in a loop. This fixes bisq-network#3016. To this end, use a ..->HIDDEN->SHOWING->SHOWN->HIDING->.. state field, together with a target visibility boolean field, where the transition between HIDDEN and SHOWN incurs a small fixed delay.
Provide a wrapper for PopOver components used as tooltips, to debounce the 'MouseEntered' and 'MouseExited' events used to show/hide it, in order to prevent it flickering open/closed in a loop. This fixes bisq-network#3016. To this end, use a ..->HIDDEN->SHOWING->SHOWN->HIDING->.. state field, together with a target visibility boolean field, where the transition between HIDDEN and SHOWN incurs a small fixed delay.
When I hover my mouse onto the info "i" button from the bottom, the info pane flashes open and closed at a rate of about 20 times per second. This is it caught mid flip out:
Please fix.
The text was updated successfully, but these errors were encountered: