From af978c7ad75309b6a383907b8fd29c09064766ef Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Mon, 23 Dec 2024 21:29:46 +0000 Subject: [PATCH] theme: demote padding.height warning ...from WLR_ERROR to WLR_INFO to avoid 'false' logging when Openbox themes contain the padding.height settings. Whilst this option is not supported, the visual appearance is very close to that of Openbox with common themes. The background to this is that Labwc theme specification has diverged slightly from that of Openbox with respect to titlebar padding to support more contemporary looks whilst avoiding breaking changes. For full details see commit: e16e78e7a4a6e40c8184edd7bb483b0f395482d0 Suggested-by: @Consolatis --- src/theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.c b/src/theme.c index a0853d7c..8b88baf3 100644 --- a/src/theme.c +++ b/src/theme.c @@ -637,7 +637,7 @@ entry(struct theme *theme, const char *key, const char *value) wlr_log(WLR_ERROR, "titlebar.height is no longer supported"); } if (match_glob(key, "padding.height")) { - wlr_log(WLR_ERROR, "padding.height is no longer supported"); + wlr_log(WLR_INFO, "padding.height is no longer supported"); } if (match_glob(key, "window.active.border.color")) {