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:
authorDaniel Salazar <zanqdo@gmail.com>2010-02-14 10:05:50 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-02-14 10:05:50 +0300
commitb02f78ed02fd0c6fbb8f67bba1c123552052321c (patch)
treee07f77a9144538cd0d79833363bb428e1376fc46 /source/blender/editors/space_file/file_draw.c
parent4d218824c5ab410ab090a5e31beec09f7d7eb674 (diff)
Using multiline descriptions like this:
""" Fixes the most common causes of gimbal lock in the fcurves of the active bone. """ is causing bad glitches (boxy characters) on the tooltips..
Diffstat (limited to 'source/blender/editors/space_file/file_draw.c')
-rw-r--r--source/blender/editors/space_file/file_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c
index b8ce2307c71..cd0571d4219 100644
--- a/source/blender/editors/space_file/file_draw.c
+++ b/source/blender/editors/space_file/file_draw.c
@@ -207,13 +207,13 @@ void file_draw_buttons(const bContext *C, ARegion *ar)
but = uiDefIconButO(block, BUT, "FILE_OT_filenum", 0, ICON_ZOOMOUT,
min_x + line2_w + separator, line2_y,
btn_fn_w, btn_h,
- "Decrement the filename number.");
+ "Decrement the filename number");
RNA_int_set(uiButGetOperatorPtrRNA(but), "increment", -1);
but = uiDefIconButO(block, BUT, "FILE_OT_filenum", 0, ICON_ZOOMIN,
min_x + line2_w + separator + btn_fn_w, line2_y,
btn_fn_w, btn_h,
- "Increment the filename number.");
+ "Increment the filename number");
RNA_int_set(uiButGetOperatorPtrRNA(but), "increment", 1);
uiBlockEndAlign(block);
}