From 92cc01f40149292d315456f7e5bbdad6dc099caf Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 3 Nov 2022 15:53:45 +0100 Subject: [PATCH] fix: label default style --- src/AButton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AButton.cpp b/src/AButton.cpp index 021ad972..78d5d422 100644 --- a/src/AButton.cpp +++ b/src/AButton.cpp @@ -21,7 +21,7 @@ AButton::AButton(const Json::Value& config, const std::string& name, const std:: /* https://github.com/Alexays/Waybar/issues/1731 */ auto css = Gtk::CssProvider::create(); - css->load_from_data("button { all: unset; min-width: 0; }"); + css->load_from_data("button { all: unset; min-width: 0; } label { all: unset; }"); button_.get_style_context()->add_provider(css, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); if (!id.empty()) {