[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54179] trunk/blender/source/blender: More UI messages tweaks and fixes.

Bastien Montagne montagne29 at wanadoo.fr
Tue Jan 29 09:01:54 CET 2013


Revision: 54179
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54179
Author:   mont29
Date:     2013-01-29 08:01:50 +0000 (Tue, 29 Jan 2013)
Log Message:
-----------
More UI messages tweaks and fixes. Please do not use points inside tooltips, unless they are absolutely mandatory (they are ugly, as we do not have final points!).

Modified Paths:
--------------
    trunk/blender/source/blender/editors/screen/screendump.c
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/source/blender/editors/screen/screendump.c
===================================================================
--- trunk/blender/source/blender/editors/screen/screendump.c	2013-01-29 07:21:10 UTC (rev 54178)
+++ trunk/blender/source/blender/editors/screen/screendump.c	2013-01-29 08:01:50 UTC (rev 54179)
@@ -272,7 +272,8 @@
 	
 	WM_operator_properties_filesel(ot, FOLDERFILE | IMAGEFILE, FILE_SPECIAL, FILE_SAVE,
 	                               WM_FILESEL_FILEPATH, FILE_DEFAULTDISPLAY);
-	RNA_def_boolean(ot->srna, "full", 1, "Full Screen", "Capture the whole window. Otherwise only capture the active area");
+	RNA_def_boolean(ot->srna, "full", 1, "Full Screen",
+	                "Capture the whole window (otherwise only capture the active area)");
 }
 
 /* *************** screenshot movie job ************************* */
@@ -500,5 +501,6 @@
 	ot->flag = 0;
 	
 	RNA_def_property(ot->srna, "filepath", PROP_STRING, PROP_FILEPATH);
-	RNA_def_boolean(ot->srna, "full", 1, "Full Screen", "Capture the whole window. Otherwise only capture the active area");
+	RNA_def_boolean(ot->srna, "full", 1, "Full Screen",
+	                "Capture the whole window (otherwise only capture the active area)");
 }

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2013-01-29 07:21:10 UTC (rev 54178)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2013-01-29 08:01:50 UTC (rev 54179)
@@ -2691,8 +2691,8 @@
 	prop = RNA_def_property(srna, "use_occlusion_culling", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "mode", WO_DBVT_CULLING);
 	RNA_def_property_ui_text(prop, "DBVT Culling",
-	                         "Use optimized Bullet DBVT tree for view frustum and occlusion culling "
-	                         "(more efficient, but it can waste unecessary CPU if the scene doesn't have Occluder objects");
+	                         "Use optimized Bullet DBVT tree for view frustum and occlusion culling (more efficient, "
+	                         "but it can waste unnecessary CPU if the scene doesn't have occluder objects)");
 	
 	/* not used  *//* deprecated !!!!!!!!!!!!! */
 	prop = RNA_def_property(srna, "use_activity_culling", PROP_BOOLEAN, PROP_NONE);




More information about the Bf-blender-cvs mailing list