Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-04-17 09:25:10 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-04-17 09:25:10 +0300
commit841b0c2bf5851e784888805990690649e71fec48 (patch)
tree2794c1774e6b0a654fa4c89429d6a8553b5335d6 /release
parent03faffa10b90d56150188502a3267458f1bfb6d4 (diff)
parent42224bf6237bd7bfd4a81510bdd533648463b5aa (diff)
Merge branch 'blender-v2.83-release'
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py28
1 files changed, 10 insertions, 18 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 5ff463c4700..9848c8eb69a 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -612,33 +612,25 @@ class USERPREF_PT_system_memory(SystemPanel, CenterAlignMixIn, Panel):
layout.separator()
- flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False)
-
- flow.prop(system, "memory_cache_limit", text="Sequencer Cache Limit")
- flow.prop(system, "scrollback", text="Console Scrollback Lines")
+ flow.prop(system, "texture_time_out", text="Texture Time Out")
+ flow.prop(system, "texture_collection_rate", text="Garbage Collection Rate")
layout.separator()
- flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False)
-
- flow.prop(system, "use_sequencer_disk_cache")
- flow.prop(system, "sequencer_disk_cache_dir")
- flow.prop(system, "sequencer_disk_cache_size_limit")
- flow.prop(system, "sequencer_disk_cache_compression")
+ flow.prop(system, "vbo_time_out", text="Vbo Time Out")
+ flow.prop(system, "vbo_collection_rate", text="Garbage Collection Rate")
layout.separator()
- flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False)
-
- flow.prop(system, "texture_time_out", text="Texture Time Out")
- flow.prop(system, "texture_collection_rate", text="Garbage Collection Rate")
+ flow.prop(system, "scrollback", text="Console Scrollback Lines")
layout.separator()
- flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False)
-
- flow.prop(system, "vbo_time_out", text="Vbo Time Out")
- flow.prop(system, "vbo_collection_rate", text="Garbage Collection Rate")
+ flow.prop(system, "memory_cache_limit", text="Sequencer Cache Limit")
+ flow.prop(system, "use_sequencer_disk_cache")
+ flow.prop(system, "sequencer_disk_cache_dir")
+ flow.prop(system, "sequencer_disk_cache_size_limit")
+ flow.prop(system, "sequencer_disk_cache_compression")
# -----------------------------------------------------------------------------