diff options
author | Daniel Ting <danielzting@gmail.com> | 2020-07-08 18:02:38 -0500 |
---|---|---|
committer | Daniel Ting <danielzting@gmail.com> | 2020-07-10 15:10:11 -0500 |
commit | 9605fc54c790b1c4364bc0eddfcdd65f979bfc21 (patch) | |
tree | 114b5d6f9f3172275b9ce2e513b0b5c29a182271 /platform/uwp | |
parent | dcd11faad3802679a43b27155f1b6bc59aa39b60 (diff) |
Fix cancel/OK button order on macOS
The macOS platform convention regarding button order is cancel on left,
OK on right.
Diffstat (limited to 'platform/uwp')
-rw-r--r-- | platform/uwp/os_uwp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h index 95359c68b0..c35b634353 100644 --- a/platform/uwp/os_uwp.h +++ b/platform/uwp/os_uwp.h @@ -245,7 +245,7 @@ public: void run(); - virtual bool get_swap_ok_cancel() { return true; } + virtual bool get_swap_cancel_ok() { return true; } void input_event(const Ref<InputEvent> &p_event); |