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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-06 13:15:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-06 13:20:15 +0300
commitafd4bf869498782a56304cd127192161a0a40996 (patch)
treec8469845d8d20636015e5c2ccf24fffc58b1891d /release/scripts/startup/bl_ui/space_userpref.py
parent18e67813cd1b315f77fb194476b357a0e377e6d5 (diff)
Fix T61136: Header alignment preference has no effect
Users expect this to apply to existing files, adjust this to apply on load, defaults to off.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_userpref.py')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 8db0689ad9c..814e527cbc5 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -210,7 +210,7 @@ class USERPREF_PT_interface_editors(PreferencePanel):
flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False)
- flow.row().prop(view, "header_align_default", expand=True)
+ flow.row().prop(view, "header_align")
flow.prop(system, "use_region_overlap")
flow.prop(view, "show_layout_ui", text="Corner Splitting")
flow.prop(view, "color_picker_type")