Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/resources.c
| Show First 20 Lines • Show All 2,165 Lines • ▼ Show 20 Lines | for (km = U.user_keymaps.first; km; km = km->next) { | ||||
| else if (STREQ(km->idname, "FileMain")) | else if (STREQ(km->idname, "FileMain")) | ||||
| strcpy(km->idname, "File Browser Main"); | strcpy(km->idname, "File Browser Main"); | ||||
| else if (STREQ(km->idname, "FileButtons")) | else if (STREQ(km->idname, "FileButtons")) | ||||
| strcpy(km->idname, "File Browser Buttons"); | strcpy(km->idname, "File Browser Buttons"); | ||||
| else if (STREQ(km->idname, "Buttons Generic")) | else if (STREQ(km->idname, "Buttons Generic")) | ||||
| strcpy(km->idname, "Property Editor"); | strcpy(km->idname, "Property Editor"); | ||||
| } | } | ||||
| } | } | ||||
| if (!USER_VERSION_ATLEAST(250, 16)) { | |||||
| if (U.wmdrawmethod == USER_DRAW_TRIPLE) | |||||
| U.wmdrawmethod = USER_DRAW_AUTOMATIC; | |||||
| } | |||||
| if (!USER_VERSION_ATLEAST(252, 3)) { | if (!USER_VERSION_ATLEAST(252, 3)) { | ||||
| if (U.flag & USER_LMOUSESELECT) | if (U.flag & USER_LMOUSESELECT) | ||||
| U.flag &= ~USER_TWOBUTTONMOUSE; | U.flag &= ~USER_TWOBUTTONMOUSE; | ||||
| } | } | ||||
| if (!USER_VERSION_ATLEAST(252, 4)) { | if (!USER_VERSION_ATLEAST(252, 4)) { | ||||
| bTheme *btheme; | bTheme *btheme; | ||||
| ▲ Show 20 Lines • Show All 860 Lines • Show Last 20 Lines | |||||