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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-03-07 16:26:34 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-03-07 16:27:16 +0400
commit43b5f0af2dd855f35b5e359dc730c58a953d641d (patch)
treedaf58d1f30d9f8aeeb2d76a4a306d2c3f2d97131 /source/blender/windowmanager
parentc05896eb35e61918ccbfc8deaf7312895fcade36 (diff)
tweaks to buildinfo
We wouldn't really have release branches, building will happen from annotated tags. Made it so building tag revision equals to a master branch.
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index b063a8883a0..29ba7b09e5c 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1841,7 +1841,7 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *ar, void *UNUSED(ar
}
uiDefBut(block, LABEL, 0, hash_buf, U.pixelsize * 494 - hash_width, U.pixelsize * (270 - label_delta), hash_width, UI_UNIT_Y, NULL, 0, 0, 0, 0, NULL);
- if (!STREQ(build_branch, "master") && !strstr(build_branch, "release")) {
+ if (!STREQ(build_branch, "master")) {
char branch_buf[128] = "\0";
int branch_width;
BLI_snprintf(branch_buf, sizeof(branch_buf), "Branch: %s", build_branch);