summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-02-01 10:49:49 +0100
committerpml68 <contact@pml68.dev>2025-02-01 10:49:59 +0100
commitee116bc3369194920005e84c2287ba229032e64f (patch)
treeac2d87c88307d956943fdd12cb3b62473febdf87 /src/main.rs
parentrefactor: get rid of Uuid, use widget::Id directly (diff)
downloadiced-builder-ee116bc3369194920005e84c2287ba229032e64f.tar.gz
feat: switch text editor to animated theme value
Diffstat (limited to '')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 3a52deb..ca2c017 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -367,7 +367,7 @@ impl App {
),
DesignerPage::CodeView => code_view::view(
&self.editor_content,
- self.theme.target().clone(),
+ self.theme.value().clone(),
is_focused,
),
},