[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46601] trunk/blender: Sequencer / Clip Editor:

Thomas Dinges blender at dingto.org
Sun May 13 11:26:01 CEST 2012


Revision: 46601
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46601
Author:   dingto
Date:     2012-05-13 09:26:01 +0000 (Sun, 13 May 2012)
Log Message:
-----------
Sequencer / Clip Editor:
* Make it more clear that the Memory Cache Limit is used by the Clip Editor as well. 

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_userpref.py
    trunk/blender/source/blender/makesrna/intern/rna_userdef.c

Modified: trunk/blender/release/scripts/startup/bl_ui/space_userpref.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_userpref.py	2012-05-13 09:13:47 UTC (rev 46600)
+++ trunk/blender/release/scripts/startup/bl_ui/space_userpref.py	2012-05-13 09:26:01 UTC (rev 46601)
@@ -452,7 +452,7 @@
         col.separator()
         col.separator()
 
-        col.label(text="Sequencer:")
+        col.label(text="Sequencer / Clip Editor:")
         col.prop(system, "prefetch_frames")
         col.prop(system, "memory_cache_limit")
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_userdef.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2012-05-13 09:13:47 UTC (rev 46600)
+++ trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2012-05-13 09:26:01 UTC (rev 46601)
@@ -3032,12 +3032,12 @@
 	prop = RNA_def_property(srna, "prefetch_frames", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "prefetchframes");
 	RNA_def_property_range(prop, 0, 500);
-	RNA_def_property_ui_text(prop, "Prefetch Frames", "Number of frames to render ahead during playback");
+	RNA_def_property_ui_text(prop, "Prefetch Frames", "Number of frames to render ahead during playback (sequencer only)");
 
 	prop = RNA_def_property(srna, "memory_cache_limit", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "memcachelimit");
 	RNA_def_property_range(prop, 0, (sizeof(void *) == 8) ? 1024 * 16 : 1024); /* 32 bit 2 GB, 64 bit 16 GB */
-	RNA_def_property_ui_text(prop, "Memory Cache Limit", "Memory cache limit in sequencer (megabytes)");
+	RNA_def_property_ui_text(prop, "Memory Cache Limit", "Memory cache limit (in megabytes)");
 	RNA_def_property_update(prop, 0, "rna_Userdef_memcache_update");
 
 	prop = RNA_def_property(srna, "frame_server_port", PROP_INT, PROP_NONE);




More information about the Bf-blender-cvs mailing list