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:
authorNathan Craddock <nzcraddock@gmail.com>2020-11-20 18:50:39 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-11-20 18:55:27 +0300
commit05ef031f37de0bb7e0e732bf051ba269c26d11d7 (patch)
tree5c190f49e1bd9ac79238ecd606c34505b520a96c
parent2afdb4ba8754d690ccad058fdbcab21f83c62b5c (diff)
UI: Remove excess row spacing in outliner popover
Some checkboxes had nonessential spacing between rows which made the popover taller than needed.
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index 52ae08ac119..16bbbb9566e 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -345,11 +345,9 @@ class OUTLINER_PT_filter(Panel):
if display_mode != 'DATA_API':
col = layout.column(align=True)
col.prop(space, "use_sort_alpha")
- layout.separator()
row = layout.row(align=True)
row.prop(space, "use_sync_select", text="Sync Selection")
- layout.separator()
row = layout.row(align=True)
row.prop(space, "show_mode_column", text="Show Mode Column")