From be49bb2a25d436204eb143f9e561134649a15cc0 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 17 Aug 2023 16:19:45 -0400 Subject: [PATCH] refactor: switch applet back to secondary button --- src/app/applet/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/applet/mod.rs b/src/app/applet/mod.rs index 20bf4216..7671cdc9 100644 --- a/src/app/applet/mod.rs +++ b/src/app/applet/mod.rs @@ -128,7 +128,7 @@ impl CosmicAppletHelper { &self, icon_name: &'a str, ) -> iced::widget::Button<'a, Message, Renderer> { - crate::widget::button(theme::Button::Text) + crate::widget::button(theme::Button::Secondary) .icon(theme::Svg::Symbolic, icon_name, self.suggested_size().0) .padding(8) }