Skip to content

Commit e78c4be

Browse files
committed
Merge pull request godotengine#93789 from passivestar/distraction-free-mac-shortcut
[macOS] Change the distraction-free mode shortcut
2 parents a05237f + 28a0d67 commit e78c4be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/editor_node.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6809,7 +6809,7 @@ EditorNode::EditorNode() {
68096809
distraction_free = memnew(Button);
68106810
distraction_free->set_theme_type_variation("FlatMenuButton");
68116811
ED_SHORTCUT_AND_COMMAND("editor/distraction_free_mode", TTR("Distraction Free Mode"), KeyModifierMask::CTRL | KeyModifierMask::SHIFT | Key::F11);
6812-
ED_SHORTCUT_OVERRIDE("editor/distraction_free_mode", "macos", KeyModifierMask::META | KeyModifierMask::CTRL | Key::D);
6812+
ED_SHORTCUT_OVERRIDE("editor/distraction_free_mode", "macos", KeyModifierMask::META | KeyModifierMask::SHIFT | Key::D);
68136813
ED_SHORTCUT_AND_COMMAND("editor/toggle_last_opened_bottom_panel", TTR("Toggle Last Opened Bottom Panel"), KeyModifierMask::CMD_OR_CTRL | Key::J);
68146814
distraction_free->set_shortcut(ED_GET_SHORTCUT("editor/distraction_free_mode"));
68156815
distraction_free->set_tooltip_text(TTR("Toggle distraction-free mode."));

0 commit comments

Comments
 (0)