Fix T59626: Outliner rename overlaps icons

Fix for T59219 was using low alpha-light grey for text background
so editing text would always be slightly brighter then the existing
background.

This causes outliner rename to have low alpha making text overlap
icons.

Use solid color to avoid issues with overlapping UI
elements in the future.
This commit is contained in:
Campbell Barton 2018-12-20 08:56:58 +11:00
parent ab144437e2
commit c4ee77cde8
Notes: blender-bot 2023-02-14 05:43:04 +01:00
Referenced by issue #59748, Edge loop select/deselect in UV mode won't work with left click select and 3 button emulation on
Referenced by issue #59649, Eevee in command-line batch mode is slow with particles/duplis
Referenced by issue #59646, Weird Sub-division results when used in conjunction with creases
Referenced by issue #59626, Renaming in outliner doesn't update icons position
1 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ const bTheme U_theme_default = {
.wcol_text = {
.outline = RGBA(0x444444ff),
.inner = RGBA(0x1f1f1fff),
.inner_sel = RGBA(0xb3b3b333),
.inner_sel = RGBA(0x505050ff),
.item = RGBA(0x191919ff),
.text = RGBA(0xe6e6e6ff),
.text_sel = RGBA(0xffffffff),
@ -92,7 +92,7 @@ const bTheme U_theme_default = {
.wcol_num = {
.outline = RGBA(0x444444ff),
.inner = RGBA(0x595959ff),
.inner_sel = RGBA(0xb3b3b333),
.inner_sel = RGBA(0x505050ff),
.item = RGBA(0x191919ff),
.text = RGBA(0xe6e6e6ff),
.text_sel = RGBA(0xffffffff),
@ -101,7 +101,7 @@ const bTheme U_theme_default = {
.wcol_numslider = {
.outline = RGBA(0x444444ff),
.inner = RGBA(0x595959ff),
.inner_sel = RGBA(0xb3b3b333),
.inner_sel = RGBA(0x505050ff),
.item = RGBA(0x5680c2e6),
.text = RGBA(0xe6e6e6ff),
.text_sel = RGBA(0xffffffff),