(ctx: &Context)
| 98 | const CHANGE_TARGET_SHORTCUT: KeyboardShortcut = KeyboardShortcut::new(Modifiers::CTRL, Key::T); |
| 99 | |
| 100 | pub fn consume_change_target_shortcut(ctx: &Context) -> bool { |
| 101 | ctx.input_mut(|i| i.consume_shortcut(&CHANGE_TARGET_SHORTCUT)) |
| 102 | } |
| 103 | |
| 104 | const CHANGE_BASE_SHORTCUT: KeyboardShortcut = KeyboardShortcut::new(Modifiers::CTRL, Key::B); |
| 105 |