From c6bb69eafd5c5ddde9302fb59b211723d4cba6b8 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Tue, 19 Mar 2024 16:13:11 -0400 Subject: [PATCH] refactor(icon): use COSMIC variable for default icon theme name --- src/icon_theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/icon_theme.rs b/src/icon_theme.rs index c78f2cc1..8164b760 100644 --- a/src/icon_theme.rs +++ b/src/icon_theme.rs @@ -10,7 +10,7 @@ pub const COSMIC: &str = "Cosmic"; thread_local! { /// The fallback icon theme to search if no icon theme was specified. - pub(crate) static DEFAULT: RefCell> = RefCell::new("Cosmic".into()); + pub(crate) static DEFAULT: RefCell> = RefCell::new(COSMIC.into()); } /// The fallback icon theme to search if no icon theme was specified.