[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26781] trunk/blender/source/blender: Missing tooltips for Start frame and End frame

Daniel Salazar zanqdo at gmail.com
Wed Feb 10 19:47:56 CET 2010


Revision: 26781
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26781
Author:   zanqdo
Date:     2010-02-10 19:47:55 +0100 (Wed, 10 Feb 2010)

Log Message:
-----------
Missing tooltips for Start frame and End frame
Removing all dots at the end of tooltips in screen_ops.c

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

Modified: trunk/blender/source/blender/editors/screen/screen_ops.c
===================================================================
--- trunk/blender/source/blender/editors/screen/screen_ops.c	2010-02-10 18:29:58 UTC (rev 26780)
+++ trunk/blender/source/blender/editors/screen/screen_ops.c	2010-02-10 18:47:55 UTC (rev 26781)
@@ -538,7 +538,7 @@
 {
 	/* identifiers */
 	ot->name= "Handle area action zones";
-	ot->description= "Handle area action zones for mouse actions/gestures.";
+	ot->description= "Handle area action zones for mouse actions/gestures";
 	ot->idname= "SCREEN_OT_actionzone";
 	
 	ot->invoke= actionzone_invoke;
@@ -660,7 +660,7 @@
 static void SCREEN_OT_area_swap(wmOperatorType *ot)
 {
 	ot->name= "Swap areas";
-	ot->description= "Swap selected areas screen positions.";
+	ot->description= "Swap selected areas screen positions";
 	ot->idname= "SCREEN_OT_area_swap";
 	
 	ot->invoke= area_swap_invoke;
@@ -729,7 +729,7 @@
 static void SCREEN_OT_area_dupli(wmOperatorType *ot)
 {
 	ot->name= "Duplicate Area into New Window";
-	ot->description= "Duplicate selected area into new window.";
+	ot->description= "Duplicate selected area into new window";
 	ot->idname= "SCREEN_OT_area_dupli";
 	
 	ot->invoke= area_dupli_invoke;
@@ -977,7 +977,7 @@
 {
 	/* identifiers */
 	ot->name= "Move area edges";
-	ot->description= "Move selected area edges.";
+	ot->description= "Move selected area edges";
 	ot->idname= "SCREEN_OT_area_move";
 	
 	ot->exec= area_move_exec;
@@ -1301,7 +1301,7 @@
 static void SCREEN_OT_area_split(wmOperatorType *ot)
 {
 	ot->name = "Split area";
-	ot->description= "Split selected area into new windows.";
+	ot->description= "Split selected area into new windows";
 	ot->idname = "SCREEN_OT_area_split";
 	
 	ot->exec= area_split_exec;
@@ -1493,7 +1493,7 @@
 {
 	/* identifiers */
 	ot->name= "Scale Region Size";
-	ot->description= "Scale selected area.";
+	ot->description= "Scale selected area";
 	ot->idname= "SCREEN_OT_region_scale";
 	
 	ot->invoke= region_scale_invoke;
@@ -1556,7 +1556,7 @@
 static void SCREEN_OT_frame_jump(wmOperatorType *ot)
 {
 	ot->name = "Jump to Endpoint";
-	ot->description= "Jump to first/last frame in frame range.";
+	ot->description= "Jump to first/last frame in frame range";
 	ot->idname = "SCREEN_OT_frame_jump";
 	
 	ot->exec= frame_jump_exec;
@@ -1620,7 +1620,7 @@
 static void SCREEN_OT_keyframe_jump(wmOperatorType *ot)
 {
 	ot->name = "Jump to Keyframe";
-	ot->description= "Jump to previous/next keyframe.";
+	ot->description= "Jump to previous/next keyframe";
 	ot->idname = "SCREEN_OT_keyframe_jump";
 	
 	ot->exec= keyframe_jump_exec;
@@ -1677,7 +1677,7 @@
 static void SCREEN_OT_screen_set(wmOperatorType *ot)
 {
 	ot->name = "Set Screen";
-	ot->description= "Cycle through available screens.";
+	ot->description= "Cycle through available screens";
 	ot->idname = "SCREEN_OT_screen_set";
 	
 	ot->exec= screen_set_exec;
@@ -1700,7 +1700,7 @@
 static void SCREEN_OT_screen_full_area(wmOperatorType *ot)
 {
 	ot->name = "Toggle Full Screen";
-	ot->description= "Toggle display selected area as fullscreen.";
+	ot->description= "Toggle display selected area as fullscreen";
 	ot->idname = "SCREEN_OT_screen_full_area";
 	
 	ot->exec= screen_full_area_exec;
@@ -1979,7 +1979,7 @@
 {
 	/* identifiers */
 	ot->name= "Join area";
-	ot->description= "Join selected areas into new window.";
+	ot->description= "Join selected areas into new window";
 	ot->idname= "SCREEN_OT_area_join";
 	
 	/* api callbacks */
@@ -2013,7 +2013,7 @@
 {
 	/* identifiers */
 	ot->name= "Repeat Last";
-	ot->description= "Repeat last action.";
+	ot->description= "Repeat last action";
 	ot->idname= "SCREEN_OT_repeat_last";
 	
 	/* api callbacks */
@@ -2066,7 +2066,7 @@
 {
 	/* identifiers */
 	ot->name= "Repeat History";
-	ot->description= "Display menu for previous actions performed.";
+	ot->description= "Display menu for previous actions performed";
 	ot->idname= "SCREEN_OT_repeat_history";
 	
 	/* api callbacks */
@@ -2100,7 +2100,7 @@
 {
 	/* identifiers */
 	ot->name= "Redo Last";
-	ot->description= "Display menu for last action performed.";
+	ot->description= "Display menu for last action performed";
 	ot->idname= "SCREEN_OT_redo_last";
 	
 	/* api callbacks */
@@ -2194,7 +2194,7 @@
 {
 	/* identifiers */
 	ot->name= "Toggle Quad View";
-	ot->description= "Split selected area into camera, front, right & top views.";
+	ot->description= "Split selected area into camera, front, right & top views";
 	ot->idname= "SCREEN_OT_region_quadview";
 	
 	/* api callbacks */
@@ -2508,7 +2508,7 @@
 {
 	/* identifiers */
 	ot->name= "Animation Step";
-	ot->description= "Step through animation by position.";
+	ot->description= "Step through animation by position";
 	ot->idname= "SCREEN_OT_animation_step";
 	
 	/* api callbacks */
@@ -2576,7 +2576,7 @@
 {
 	/* identifiers */
 	ot->name= "Play Animation";
-	ot->description= "Play animation.";
+	ot->description= "Play animation";
 	ot->idname= "SCREEN_OT_animation_play";
 	
 	/* api callbacks */
@@ -2613,7 +2613,7 @@
 {
 	/* identifiers */
 	ot->name= "Cancel Animation";
-	ot->description= "Cancel animation, returning to the original frame.";
+	ot->description= "Cancel animation, returning to the original frame";
 	ot->idname= "SCREEN_OT_animation_cancel";
 	
 	/* api callbacks */
@@ -3264,7 +3264,7 @@
 {
 	/* identifiers */
 	ot->name= "Render";
-	ot->description= "Render active scene.";
+	ot->description= "Render active scene";
 	ot->idname= "SCREEN_OT_render";
 	
 	/* api callbacks */
@@ -3644,7 +3644,7 @@
 {
 	/* identifiers */
 	ot->name= "OpenGL Render";
-	ot->description= "OpenGL render active viewport.";
+	ot->description= "OpenGL render active viewport";
 	ot->idname= "SCREEN_OT_opengl_render";
 	
 	/* api callbacks */
@@ -3697,7 +3697,7 @@
 {
 	/* identifiers */
 	ot->name= "Cancel Render View";
-	ot->description= "Cancel show render view.";
+	ot->description= "Cancel show render view";
 	ot->idname= "SCREEN_OT_render_view_cancel";
 	
 	/* api callbacks */
@@ -3743,7 +3743,7 @@
 {
 	/* identifiers */
 	ot->name= "Show/Hide Render View";
-	ot->description= "Toggle show render view.";
+	ot->description= "Toggle show render view";
 	ot->idname= "SCREEN_OT_render_view_show";
 	
 	/* api callbacks */
@@ -3777,7 +3777,7 @@
 {
 	/* identifiers */
 	ot->name= "Back to Previous Screen";
-	ot->description= "Revert back to the original screen layout, before fullscreen area overlay.";
+	ot->description= "Revert back to the original screen layout, before fullscreen area overlay";
 	ot->idname= "SCREEN_OT_back_to_previous";
 	
 	/* api callbacks */
@@ -3816,7 +3816,7 @@
 {
 	/* identifiers */
 	ot->name= "Show/Hide User Preferences";
-	ot->description= "Show/hide user preferences.";
+	ot->description= "Show/hide user preferences";
 	ot->idname= "SCREEN_OT_userpref_show";
 	
 	/* api callbacks */
@@ -3841,7 +3841,7 @@
 {
 	/* identifiers */
 	ot->name= "New Screen";
-	ot->description= "Add a new screen.";
+	ot->description= "Add a new screen";
 	ot->idname= "SCREEN_OT_new";
 	
 	/* api callbacks */
@@ -3866,7 +3866,7 @@
 {
 	/* identifiers */
 	ot->name= "Delete Screen"; //was scene
-	ot->description= "Delete active screen.";
+	ot->description= "Delete active screen";
 	ot->idname= "SCREEN_OT_delete";
 	
 	/* api callbacks */
@@ -3908,7 +3908,7 @@
 	
 	/* identifiers */
 	ot->name= "New Scene";
-	ot->description= "Add new scene by type.";
+	ot->description= "Add new scene by type";
 	ot->idname= "SCENE_OT_new";
 	
 	/* api callbacks */
@@ -3937,7 +3937,7 @@
 {
 	/* identifiers */
 	ot->name= "Delete Scene";
-	ot->description= "Delete active scene.";
+	ot->description= "Delete active scene";
 	ot->idname= "SCENE_OT_delete";
 	
 	/* api callbacks */

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-02-10 18:29:58 UTC (rev 26780)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2010-02-10 18:47:55 UTC (rev 26781)
@@ -2657,7 +2657,7 @@
 	RNA_def_property_int_sdna(prop, NULL, "r.sfra");
 	RNA_def_property_int_funcs(prop, NULL, "rna_Scene_start_frame_set", NULL);
 	RNA_def_property_range(prop, MINFRAME, MAXFRAME);
-	RNA_def_property_ui_text(prop, "Start Frame", "");
+	RNA_def_property_ui_text(prop, "Start Frame", "First frame of the playback/rendering range");
 	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);
 	
 	prop= RNA_def_property(srna, "end_frame", PROP_INT, PROP_TIME);
@@ -2665,7 +2665,7 @@
 	RNA_def_property_int_sdna(prop, NULL, "r.efra");
 	RNA_def_property_int_funcs(prop, NULL, "rna_Scene_end_frame_set", NULL);
 	RNA_def_property_range(prop, MINFRAME, MAXFRAME);
-	RNA_def_property_ui_text(prop, "End Frame", "");
+	RNA_def_property_ui_text(prop, "End Frame", "Final frame of the playback/rendering range");
 	RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL);
 	
 	prop= RNA_def_property(srna, "frame_step", PROP_INT, PROP_TIME);





More information about the Bf-blender-cvs mailing list