mirror of
https://github.com/labwc/labwc.git
synced 2026-02-18 22:05:32 -05:00
theme: move title_height to theme struct
title_height is a derived variable which needs both config and theme variables (font height and title padding). The code is tidier calling post_processing() for this from theme_init()
This commit is contained in:
parent
85c775c3b1
commit
2f5a44d34d
5 changed files with 46 additions and 36 deletions
|
|
@ -12,6 +12,7 @@
|
|||
|
||||
struct theme {
|
||||
int border_width;
|
||||
int padding_height;
|
||||
|
||||
float window_active_border_color[4];
|
||||
float window_inactive_border_color[4];
|
||||
|
|
@ -34,6 +35,9 @@ struct theme {
|
|||
struct wlr_texture *xbm_close_inactive_unpressed;
|
||||
struct wlr_texture *xbm_maximize_inactive_unpressed;
|
||||
struct wlr_texture *xbm_iconify_inactive_unpressed;
|
||||
|
||||
/* not set in rc.xml or themerc, but derived from font and padding_height */
|
||||
int title_height;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue