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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_userpref.py')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 3783ae2272d..55a436b6967 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -625,6 +625,8 @@ class USERPREF_PT_theme(Panel):
subsub.active = widget_style.show_shaded
subsub.prop(widget_style, "shadetop")
subsub.prop(widget_style, "shadedown")
+ subsub = colsub.column(align=True)
+ subsub.prop(widget_style, "roundness")
layout.separator()
@@ -685,6 +687,14 @@ class USERPREF_PT_theme(Panel):
col = split.column()
ui = theme.user_interface
+ row = col.row()
+ subsplit = row.split(percentage=0.47)
+ subsplit.prop(ui, "interface_style")
+
+ col.separator()
+ col.separator()
+ col.separator()
+
col.label(text="Regular:")
self._theme_widget_style(col, ui.wcol_regular)
@@ -799,6 +809,7 @@ class USERPREF_PT_theme(Panel):
colsub = padding.column()
colsub = padding.column()
colsub.row().prop(ui, "widget_emboss")
+ colsub.row().prop(ui, "area_edges")
col.separator()
col.separator()