Fix issue in fullscreen patch.

Don't change old event codes! Keymap diffing depends on those being the
same across versions to work.
This commit is contained in:
Antonis Ryakiotakis 2014-10-30 15:24:56 +01:00
parent be63ba315f
commit f07cd77b48
Notes: blender-bot 2023-02-14 09:55:18 +01:00
Referenced by issue #42338, issue with shortcuts
1 changed files with 9 additions and 6 deletions

View File

@ -299,16 +299,19 @@ enum {
/* Tweak, gestures: 0x500x, 0x501x */
EVT_ACTIONZONE_AREA = 0x5000,
EVT_ACTIONZONE_REGION = 0x5001,
EVT_ACTIONZONE_FULLSCREEN = 0x5002,
EVT_ACTIONZONE_FULLSCREEN = 0x5011,
/* tweak events, for L M R mousebuttons */
EVT_TWEAK_L = 0x5003,
EVT_TWEAK_M = 0x5004,
EVT_TWEAK_R = 0x5005,
EVT_TWEAK_L = 0x5002,
EVT_TWEAK_M = 0x5003,
EVT_TWEAK_R = 0x5004,
/* tweak events for action or select mousebutton */
EVT_TWEAK_A = 0x5006,
EVT_TWEAK_S = 0x5007,
EVT_TWEAK_A = 0x5005,
EVT_TWEAK_S = 0x5006,
EVT_GESTURE = 0x5010,
/* 0x5011 is taken, see EVT_ACTIONZONE_FULLSCREEN */
/* Misc Blender internals: 0x502x */
EVT_FILESELECT = 0x5020,
EVT_BUT_OPEN = 0x5021,