Merge branch 'blender-v2.83-release'
This commit is contained in:
@@ -538,6 +538,7 @@ class SystemPanel:
|
|||||||
|
|
||||||
class USERPREF_PT_system_sound(SystemPanel, CenterAlignMixIn, Panel):
|
class USERPREF_PT_system_sound(SystemPanel, CenterAlignMixIn, Panel):
|
||||||
bl_label = "Sound"
|
bl_label = "Sound"
|
||||||
|
bl_options = {'DEFAULT_CLOSED'}
|
||||||
|
|
||||||
def draw_centered(self, context, layout):
|
def draw_centered(self, context, layout):
|
||||||
prefs = context.preferences
|
prefs = context.preferences
|
||||||
@@ -591,19 +592,10 @@ class USERPREF_PT_system_memory(SystemPanel, CenterAlignMixIn, Panel):
|
|||||||
layout.separator()
|
layout.separator()
|
||||||
|
|
||||||
col = layout.column()
|
col = layout.column()
|
||||||
col.prop(system, "memory_cache_limit", text="Sequencer Cache Limit")
|
|
||||||
col.prop(system, "scrollback", text="Console Scrollback Lines")
|
col.prop(system, "scrollback", text="Console Scrollback Lines")
|
||||||
|
|
||||||
layout.separator()
|
layout.separator()
|
||||||
|
|
||||||
col = layout.column()
|
|
||||||
col.prop(system, "use_sequencer_disk_cache")
|
|
||||||
col.prop(system, "sequencer_disk_cache_dir")
|
|
||||||
col.prop(system, "sequencer_disk_cache_size_limit")
|
|
||||||
col.prop(system, "sequencer_disk_cache_compression")
|
|
||||||
|
|
||||||
layout.separator()
|
|
||||||
|
|
||||||
col = layout.column()
|
col = layout.column()
|
||||||
col.prop(system, "texture_time_out", text="Texture Time Out")
|
col.prop(system, "texture_time_out", text="Texture Time Out")
|
||||||
col.prop(system, "texture_collection_rate", text="Garbage Collection Rate")
|
col.prop(system, "texture_collection_rate", text="Garbage Collection Rate")
|
||||||
@@ -615,6 +607,26 @@ class USERPREF_PT_system_memory(SystemPanel, CenterAlignMixIn, Panel):
|
|||||||
col.prop(system, "vbo_collection_rate", text="Garbage Collection Rate")
|
col.prop(system, "vbo_collection_rate", text="Garbage Collection Rate")
|
||||||
|
|
||||||
|
|
||||||
|
class USERPREF_PT_system_video_sequencer(SystemPanel, CenterAlignMixIn, Panel):
|
||||||
|
bl_label = "Video Sequencer"
|
||||||
|
|
||||||
|
def draw_centered(self, context, layout):
|
||||||
|
prefs = context.preferences
|
||||||
|
system = prefs.system
|
||||||
|
edit = prefs.edit
|
||||||
|
|
||||||
|
layout.prop(system, "memory_cache_limit")
|
||||||
|
|
||||||
|
layout.separator()
|
||||||
|
|
||||||
|
layout.prop(system, "use_sequencer_disk_cache")
|
||||||
|
col = layout.column()
|
||||||
|
col.active = system.use_sequencer_disk_cache
|
||||||
|
col.prop(system, "sequencer_disk_cache_dir", text="Directory")
|
||||||
|
col.prop(system, "sequencer_disk_cache_size_limit", text="Cache Limit")
|
||||||
|
col.prop(system, "sequencer_disk_cache_compression", text="Compression")
|
||||||
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Viewport Panels
|
# Viewport Panels
|
||||||
|
|
||||||
@@ -2190,6 +2202,7 @@ classes = (
|
|||||||
|
|
||||||
USERPREF_PT_system_cycles_devices,
|
USERPREF_PT_system_cycles_devices,
|
||||||
USERPREF_PT_system_memory,
|
USERPREF_PT_system_memory,
|
||||||
|
USERPREF_PT_system_video_sequencer,
|
||||||
USERPREF_PT_system_sound,
|
USERPREF_PT_system_sound,
|
||||||
|
|
||||||
USERPREF_MT_interface_theme_presets,
|
USERPREF_MT_interface_theme_presets,
|
||||||
|
Reference in New Issue
Block a user