We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Tooltips do not appear if their content does not request redraw on hover.
use iced::widget::tooltip; use iced::{application, Element, Task}; fn main() -> iced::Result { application("Tooltip", update, view).run() } fn update(_: &mut (), _: ()) -> Task<()> { Task::none() } fn view<'a>(_: &'a ()) -> Element<'a, ()> { tooltip("FooBar", "FizzBuzz", tooltip::Position::Bottom).into() }
The tooltip should appear regardless of if its content requests redraw. Adding shell.request_redraw() to Tooltip::update produces this behavior.
shell.request_redraw()
Tooltip::update
master
Windows
No response
The text was updated successfully, but these errors were encountered:
scrollable::scroll_to also does not reliably cause a redraw.
scrollable::scroll_to
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is your issue REALLY a bug?
Is there an existing issue for this?
Is this issue related to iced?
What happened?
Tooltips do not appear if their content does not request redraw on hover.
What is the expected behavior?
The tooltip should appear regardless of if its content requests redraw. Adding
shell.request_redraw()
toTooltip::update
produces this behavior.Version
master
Operating System
Windows
Do you have any log output?
No response
The text was updated successfully, but these errors were encountered: