mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
theme: add window.active.border.color
This replaces window.active.handle.bg.color which will no longer be supported.
This commit is contained in:
parent
f3a0db29f5
commit
31d3a53e46
4 changed files with 10 additions and 10 deletions
|
|
@ -65,7 +65,7 @@ void theme_builtin(struct theme *theme)
|
|||
{
|
||||
theme->border_width = 1;
|
||||
parse_hexstr("#589bda", theme->window_active_title_bg_color);
|
||||
parse_hexstr("#3c7cb7", theme->window_active_handle_bg_color);
|
||||
parse_hexstr("#3c7cb7", theme->window_active_border_color);
|
||||
parse_hexstr("#efece6", theme->window_inactive_title_bg_color);
|
||||
parse_hexstr("#ffffff", theme->window_active_button_unpressed_image_color);
|
||||
parse_hexstr("#000000", theme->window_inactive_button_unpressed_image_color);
|
||||
|
|
@ -91,7 +91,7 @@ static void entry(struct theme *theme, const char *key, const char *value)
|
|||
} else if (match(key, "window.active.title.bg.color")) {
|
||||
parse_hexstr(value, theme->window_active_title_bg_color);
|
||||
} else if (match(key, "window.active.handle.bg.color")) {
|
||||
parse_hexstr(value, theme->window_active_handle_bg_color);
|
||||
parse_hexstr(value, theme->window_active_border_color);
|
||||
} else if (match(key, "window.inactive.title.bg.color")) {
|
||||
parse_hexstr(value, theme->window_inactive_title_bg_color);
|
||||
} else if (match(key, "window.active.button.unpressed.image.color")) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue