add SelectAll to TextEditor
This commit is contained in:
parent
23d9497e7f
commit
76f5bc2cce
3 changed files with 28 additions and 0 deletions
|
|
@ -762,6 +762,11 @@ impl Update {
|
|||
{
|
||||
return Some(Self::Paste);
|
||||
}
|
||||
keyboard::Key::Character("a")
|
||||
if modifiers.command() =>
|
||||
{
|
||||
return Some(Self::Action(Action::SelectAll));
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue