diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-15 13:18:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 13:18:27 +0100 |
commit | 51bbcbdec2f971ed0113992b34335ef3c9873e79 (patch) | |
tree | 2a6c142089cb1c766f3b18107d70e8a418ce6248 /editor/plugins/canvas_item_editor_plugin.cpp | |
parent | d0fee76717abde7ce7d922e488a03782669b2450 (diff) | |
parent | 39d429e49705fe153a20dfb27421f1246237a683 (diff) | |
download | redot-engine-51bbcbdec2f971ed0113992b34335ef3c9873e79.tar.gz |
Merge pull request #45263 from KoBeWi/😕
Diffstat (limited to 'editor/plugins/canvas_item_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index 2603d17409..d74499621d 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -60,12 +60,12 @@ // Min and Max are power of two in order to play nicely with successive increment. // That way, we can naturally reach a 100% zoom from boundaries. -#define MIN_ZOOM 1. / 128 -#define MAX_ZOOM 128 +constexpr real_t MIN_ZOOM = 1. / 128; +constexpr real_t MAX_ZOOM = 128; #define RULER_WIDTH (15 * EDSCALE) -#define SCALE_HANDLE_DISTANCE 25 -#define MOVE_HANDLE_DISTANCE 25 +constexpr real_t SCALE_HANDLE_DISTANCE = 25; +constexpr real_t MOVE_HANDLE_DISTANCE = 25; class SnapDialog : public ConfirmationDialog { GDCLASS(SnapDialog, ConfirmationDialog); |