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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-25 12:53:21 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-04-25 16:42:41 +0300
commita9d3f9f54d6db8197b891ba4bdcc53bf6adeb113 (patch)
tree5c81e91fb51329a42d4d356b9ec50e71887b1560 /source/blender/editors/interface/resources.c
parentcc7460eaa491ed020acdc8f863cd521688fad01c (diff)
Revert "UI: fix inconsistency in button rounding when zooming in."
This isn't working well when zoomed out in the properties editor, we should be taking into account properties editor zoom level. This reverts commit 1ba91ae2c02863b3fd97810e7bcee902dac58992.
Diffstat (limited to 'source/blender/editors/interface/resources.c')
-rw-r--r--source/blender/editors/interface/resources.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index 593d935e8f3..1bc834a121c 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -2966,7 +2966,7 @@ void init_userdef_do_versions(void)
btheme->tui.wcol_tool.roundness = 0.2f;
btheme->tui.wcol_text.roundness = 0.2f;
btheme->tui.wcol_radio.roundness = 0.2f;
- btheme->tui.wcol_option.roundness = 0.2f;
+ btheme->tui.wcol_option.roundness = 0.333333f;
btheme->tui.wcol_toggle.roundness = 0.25f;
btheme->tui.wcol_num.roundness = 0.5f;
btheme->tui.wcol_numslider.roundness = 0.5f;