diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-21 22:14:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 22:14:04 +0200 |
commit | a5fb4451210625702474a8fac1dd880e78a409e9 (patch) | |
tree | adb757763521db11286fb415682ccca48c903adf /platform/osx | |
parent | 25d59a5a1a30d0d7cc19de34f03d0d521cde5431 (diff) | |
parent | 4dda62f5911eefe4c0476d1e148256545e3c931e (diff) |
Merge pull request #40450 from asmaloney/spelling
Fix spelling & grammar in comments, docs, and messages
Diffstat (limited to 'platform/osx')
-rw-r--r-- | platform/osx/display_server_osx.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/display_server_osx.mm b/platform/osx/display_server_osx.mm index baecb260b5..5e209a6e6b 100644 --- a/platform/osx/display_server_osx.mm +++ b/platform/osx/display_server_osx.mm @@ -2782,7 +2782,7 @@ void DisplayServerOSX::window_set_flag(WindowFlags p_flag, bool p_enabled, Windo switch (p_flag) { case WINDOW_FLAG_RESIZE_DISABLED: { wd.resize_disabled = p_enabled; - if (wd.fullscreen) { //fullscreen window should be resizable, style will be applyed on exiting fs + if (wd.fullscreen) { //fullscreen window should be resizable, style will be applied on exiting fs return; } if (p_enabled) { |