Request redraw in tooltip when State changes
This commit is contained in:
parent
0a39f5eac7
commit
07850718fc
1 changed files with 2 additions and 1 deletions
|
|
@ -213,7 +213,8 @@ where
|
|||
|
||||
if was_idle != is_idle {
|
||||
shell.invalidate_layout();
|
||||
} else if self.position == Position::FollowCursor && *state != State::Idle {
|
||||
shell.request_redraw();
|
||||
} else if !is_idle && self.position == Position::FollowCursor {
|
||||
shell.request_redraw();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue