diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-15 09:21:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 09:21:04 +0200 |
commit | c8523038ccdf3f28640427380ddc4cd0b06bcb57 (patch) | |
tree | c6dd064ad3fe81e44ed8073417bad22ae3656f95 /servers/display_server.h | |
parent | b79aa897963b2686b1472dcf336bbd0c3f956db7 (diff) | |
parent | 9605fc54c790b1c4364bc0eddfcdd65f979bfc21 (diff) |
Merge pull request #40268 from DanielZTing/master
Fix cancel/OK button order on macOS
Diffstat (limited to 'servers/display_server.h')
-rw-r--r-- | servers/display_server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/display_server.h b/servers/display_server.h index 79f6f5d0fc..2cf0a83dbd 100644 --- a/servers/display_server.h +++ b/servers/display_server.h @@ -318,7 +318,7 @@ public: virtual CursorShape cursor_get_shape() const; virtual void cursor_set_custom_image(const RES &p_cursor, CursorShape p_shape = CURSOR_ARROW, const Vector2 &p_hotspot = Vector2()); - virtual bool get_swap_ok_cancel(); + virtual bool get_swap_cancel_ok(); virtual void enable_for_stealing_focus(OS::ProcessID pid); |