Skip to content

Commit

Permalink
Remove escape key shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
isherman committed Sep 12, 2023
1 parent 4888a2d commit 38d7073
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions components/pango_context/src/context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,7 @@ struct ContextImpl : public Context {
{
modifier_active_ = toInteractiveModifierKey(e.key_modifiers);

if (e.key == 27) { // escape
should_run = false;
} else if (e.key == 9) { // tab
if (e.key == 9) { // tab
window_->ShowFullscreen(TrueFalseToggle::Toggle);
} else {
Interactive::Event layer_event = {
Expand Down

0 comments on commit 38d7073

Please sign in to comment.