mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-23 17:35:00 +00:00
Fix Dialog focus after removing buttons
This commit is contained in:
parent
dd141dd810
commit
7101c174f2
@ -230,7 +230,8 @@ impl Dialog {
|
|||||||
pub fn clear_buttons(&mut self) {
|
pub fn clear_buttons(&mut self) {
|
||||||
self.buttons.clear();
|
self.buttons.clear();
|
||||||
self.invalidate();
|
self.invalidate();
|
||||||
// Fix focus?
|
self.content.take_focus(Direction::none());
|
||||||
|
self.focus = DialogFocus::Content;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Removes a button from this dialog.
|
/// Removes a button from this dialog.
|
||||||
@ -242,6 +243,17 @@ impl Dialog {
|
|||||||
self.buttons.remove(i);
|
self.buttons.remove(i);
|
||||||
self.invalidate();
|
self.invalidate();
|
||||||
// Fix focus?
|
// Fix focus?
|
||||||
|
match (self.buttons.len(), self.focus) {
|
||||||
|
// TODO: take focus?
|
||||||
|
(0, ref mut focus) => {
|
||||||
|
self.content.take_focus(Direction::none());
|
||||||
|
*focus = DialogFocus::Content;
|
||||||
|
}
|
||||||
|
(n, DialogFocus::Button(ref mut i)) => {
|
||||||
|
*i = usize::min(*i, n - 1);
|
||||||
|
}
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets the horizontal alignment for the buttons, if any.
|
/// Sets the horizontal alignment for the buttons, if any.
|
||||||
|
Loading…
Reference in New Issue
Block a user