Fix missing redraw request in tooltip widget

This commit is contained in:
Héctor Ramón Jiménez 2025-12-02 04:17:28 +01:00
parent e95f5248cb
commit 453528743b
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -258,6 +258,7 @@ where
(State::Open { .. }, None) => {
*state = State::Idle;
shell.invalidate_layout();
shell.request_redraw();
}
(State::Open { .. }, Some(_)) | (State::Idle, None) => (),
}