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>2004-04-27 23:42:41 +0400
committerTon Roosendaal <ton@blender.org>2004-04-27 23:42:41 +0400
commit0bf41c06cdce0bc3e4c5b060004672ea9b336f98 (patch)
tree5a2cdd041e9c04cf67e0f83f0320119886ef941b /source/blender/src/buttons_shading.c
parentef4a6c3551a6c23080befea92ef52baa1cf48e8f (diff)
Error in popup menu for new Musgrave texture. The order was wrong, and the
button values where wrong... big messup! Only thing that actually changes is that now the Musgrave names suddenly are different. Thanks Desoto for finding it!
Diffstat (limited to 'source/blender/src/buttons_shading.c')
-rw-r--r--source/blender/src/buttons_shading.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/buttons_shading.c b/source/blender/src/buttons_shading.c
index 5f23ea69c76..45c908d46ff 100644
--- a/source/blender/src/buttons_shading.c
+++ b/source/blender/src/buttons_shading.c
@@ -820,7 +820,7 @@ static void texture_panel_musgrave(Tex *tex)
if(uiNewPanel(curarea, block, "Musgrave", "Texture", 640, 0, 318, 204)==0) return;
uiSetButLock(tex->id.lib!=0, "Can't edit library data");
- str= "Ridged Multifractal %x0|Hybrid Multifractal %x1|Multifractal %x2|Hetero Terrain %x3|fBm %x4";
+ str= "Multifractal %x0|Ridged Multifractal %x1|Hybrid Multifractal %x2|Hetero Terrain %x4|fBm %x3";
uiDefButS(block, MENU, B_TEXPRV, str, 10, 160, 150, 19, &tex->stype, 0.0, 0.0, 0, 0, "Sets Musgrave type");
uiBlockBeginAlign(block);