summaryrefslogtreecommitdiff
path: root/theme_test
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-04-28 10:59:52 +0200
committerpml68 <contact@pml68.dev>2025-04-28 23:45:43 +0200
commite17ce59fa4c907511f38795c342b2232a7bba26d (patch)
tree0bbeddd19696de817a97f2109bae316e3a564f3a /theme_test
parentfeat: switch to modified `iced_fontello` for custom Theme support (diff)
downloadiced-builder-e17ce59fa4c907511f38795c342b2232a7bba26d.tar.gz
feat: switch to fully custom, Material3-based theme
Diffstat (limited to '')
-rw-r--r--theme_test/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/theme_test/src/main.rs b/theme_test/src/main.rs
index b4a7731..cba4377 100644
--- a/theme_test/src/main.rs
+++ b/theme_test/src/main.rs
@@ -18,7 +18,7 @@ use material_theme::text::surface_variant;
fn main() -> iced::Result {
iced::application(State::default, State::update, State::view)
- .theme(|state| *state.theme.value())
+ .theme(|state| state.theme.value().clone())
.run()
}