diff --git a/release/scripts/op/euler_filter.py b/release/scripts/op/euler_filter.py index f3bd0fa5ec9..030d3c54bac 100644 --- a/release/scripts/op/euler_filter.py +++ b/release/scripts/op/euler_filter.py @@ -44,10 +44,7 @@ def main(context): cleanupEulCurve(f) class DiscontFilterOp(bpy.types.Operator): - """ - Fixes the most common causes of gimbal lock in the fcurves of - the active bone. - """ + """Fixes the most common causes of gimbal lock in the fcurves of the active bone""" bl_idname = "graph.discont_filter" bl_label = "Filter out discontinuities in the active fcurves" @@ -61,4 +58,4 @@ class DiscontFilterOp(bpy.types.Operator): bpy.types.register(DiscontFilterOp) if __name__ == "__main__": - bpy.ops.graph.discont_filter() \ No newline at end of file + bpy.ops.graph.discont_filter() diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c index 5748a3a301c..572176a256a 100644 --- a/source/blender/editors/space_buttons/buttons_context.c +++ b/source/blender/editors/space_buttons/buttons_context.c @@ -864,7 +864,7 @@ void buttons_context_draw(const bContext *C, uiLayout *layout) block= uiLayoutGetBlock(row); uiBlockSetEmboss(block, UI_EMBOSSN); - but= uiDefIconButBitC(block, ICONTOG, SB_PIN_CONTEXT, 0, ICON_UNPINNED, 0, 0, UI_UNIT_X, UI_UNIT_Y, &sbuts->flag, 0, 0, 0, 0, "Follow context or keep fixed datablock displayed."); + but= uiDefIconButBitC(block, ICONTOG, SB_PIN_CONTEXT, 0, ICON_UNPINNED, 0, 0, UI_UNIT_X, UI_UNIT_Y, &sbuts->flag, 0, 0, 0, 0, "Follow context or keep fixed datablock displayed"); uiButSetFunc(but, pin_cb, NULL, NULL); for(a=0; alen; a++) { 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); } diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 361daaf8505..2463861e0e0 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -2432,7 +2432,7 @@ static void rna_def_scene_render_data(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "fg_stamp"); RNA_def_property_array(prop, 4); RNA_def_property_range(prop,0.0,1.0); - RNA_def_property_ui_text(prop, "Stamp Foreground", "Stamp text color"); + RNA_def_property_ui_text(prop, "Stamp Text Color", "Color to use for stamp text"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); prop= RNA_def_property(srna, "stamp_background", PROP_FLOAT, PROP_COLOR);