Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2012-12-13 17:20:01 +0400
committerTon Roosendaal <ton@blender.org>2012-12-13 17:20:01 +0400
commitc12a1368fffef138ccea71442285e228ab7d27a8 (patch)
treeec565100052c805ba5d84279f2f1eb3e54bfbb98 /source/blender/editors/interface/resources.c
parentb120e649f20e28d736e730d51f456e6aa2392053 (diff)
Feature fix:
Upgraded version to 2.65.1, and check on this to map default region backgrounds to have an alpha 0.5. This only worked until now for 2.64 savedi startups.
Diffstat (limited to 'source/blender/editors/interface/resources.c')
-rw-r--r--source/blender/editors/interface/resources.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index 3a482b97d37..180c5ddada2 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -2009,7 +2009,7 @@ void init_userdef_do_versions(void)
if (U.tweak_threshold == 0)
U.tweak_threshold = 10;
- if (bmain->versionfile < 265) { /* XXX fix for when you apply */
+ if (bmain->versionfile < 265 || (bmain->versionfile == 265 && bmain->subversionfile < 1)) {
bTheme *btheme;
for (btheme = U.themes.first; btheme; btheme = btheme->next) {