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>2018-05-11 23:15:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-11 23:15:05 +0300
commit6aca3e43ec83ae0c64ba3c06c1a96e1137b875db (patch)
tree381bf019922025beda2868e00ae54fc0be519d62 /source/blender/editors/interface/resources.c
parentbd30a6350b3dbdc7967d546366fc0c52b75d5a09 (diff)
UI: tweaks to icon defaults
Minor changes to fit w/ new icons.
Diffstat (limited to 'source/blender/editors/interface/resources.c')
-rw-r--r--source/blender/editors/interface/resources.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index 1b4c289b0eb..95a7d0a0d06 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -2981,10 +2981,10 @@ void init_userdef_do_versions(void)
if (((bTheme *)U.themes.first)->tui.wcol_toolbar_item.text[3] == 0) {
struct uiWidgetColors wcol_toolbar_item = {
- .outline = {0x19, 0x19, 0x19, 0xff},
+ .outline = {0x0, 0x0, 0x0, 0xff},
.inner = {0x46, 0x46, 0x46, 0xff},
- .inner_sel = {0xb4, 0xb4, 0xb4, 0xff},
- .item = {0x19, 0x19, 0x19, 0xff},
+ .inner_sel = {0xcc, 0xcc, 0xcc, 0xff},
+ .item = {0x0, 0x0, 0x0, 0xff},
.text = {0xff, 0xff, 0xff, 0xff},
.text_sel = {0x33, 0x33, 0x33, 0xff},
@@ -2997,7 +2997,7 @@ void init_userdef_do_versions(void)
};
for (bTheme *btheme = U.themes.first; btheme; btheme = btheme->next) {
btheme->tui.wcol_toolbar_item = wcol_toolbar_item;
- btheme->tui.icon_saturation = 0.4f;
+ btheme->tui.icon_saturation = 1.0f;
}
}