Make sure enum stays encoded correctly in JSON.
This commit is contained in:
parent
a4d417f5c0
commit
686fa35405
|
@ -42,9 +42,10 @@ class VIEW;
|
||||||
|
|
||||||
|
|
||||||
///< Action to perform when the mouse is dragged
|
///< Action to perform when the mouse is dragged
|
||||||
|
// Warning: these are encoded as integers in the file, so don't change their values
|
||||||
enum class MOUSE_DRAG_ACTION
|
enum class MOUSE_DRAG_ACTION
|
||||||
{
|
{
|
||||||
DRAG_ANY,
|
DRAG_ANY = -2,
|
||||||
DRAG_SELECTED,
|
DRAG_SELECTED,
|
||||||
SELECT,
|
SELECT,
|
||||||
ZOOM,
|
ZOOM,
|
||||||
|
|
Loading…
Reference in New Issue