Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/intern/versioning_userdef.c
| Show First 20 Lines • Show All 304 Lines • ▼ Show 20 Lines | if (!USER_VERSION_ATLEAST(300, 33)) { | ||||
| /* Adjust the frame node alpha now that it is used differently. */ | /* Adjust the frame node alpha now that it is used differently. */ | ||||
| btheme->space_node.movie[3] = U_theme_default.space_node.movie[3]; | btheme->space_node.movie[3] = U_theme_default.space_node.movie[3]; | ||||
| } | } | ||||
| if (!USER_VERSION_ATLEAST(300, 34)) { | if (!USER_VERSION_ATLEAST(300, 34)) { | ||||
| btheme->tui.panel_roundness = 0.4f; | btheme->tui.panel_roundness = 0.4f; | ||||
| } | } | ||||
| if (!USER_VERSION_ATLEAST(300, 37)) { | |||||
| btheme->space_node.dash_alpha = 0.5f; | |||||
| } | |||||
| /** | /** | ||||
| * Versioning code until next subversion bump goes here. | * Versioning code until next subversion bump goes here. | ||||
| * | * | ||||
| * \note Be sure to check when bumping the version: | * \note Be sure to check when bumping the version: | ||||
| * - #blo_do_versions_userdef in this file. | * - #blo_do_versions_userdef in this file. | ||||
| * - "versioning_{BLENDER_VERSION}.c" | * - "versioning_{BLENDER_VERSION}.c" | ||||
| * | * | ||||
| * \note Keep this message at the bottom of the function. | * \note Keep this message at the bottom of the function. | ||||
| ▲ Show 20 Lines • Show All 632 Lines • Show Last 20 Lines | |||||