aboutsummaryrefslogtreecommitdiff
path: root/src/components/preference_pages/editor.rs
diff options
context:
space:
mode:
authorRubén Beltrán del Río <jj@r.bdr.sh>2026-03-30 13:39:24 +0200
committerRubén Beltrán del Río <jj@r.bdr.sh>2026-03-30 13:45:00 +0200
commit9b988989ec3dc1316c5bdfa162b6ef8cfd21beff (patch)
tree0e7ce77dda423add1fc09f1dd2df2b3c2ee13478 /src/components/preference_pages/editor.rs
parentd01a4df546b553128400f6c68eefa8368b4113a8 (diff)
Apply some linting
Diffstat (limited to 'src/components/preference_pages/editor.rs')
-rw-r--r--src/components/preference_pages/editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/preference_pages/editor.rs b/src/components/preference_pages/editor.rs
index 28a8302..8fe40f0 100644
--- a/src/components/preference_pages/editor.rs
+++ b/src/components/preference_pages/editor.rs
@@ -182,7 +182,7 @@ impl SimpleComponent for Editor {
EditorAction::SetFontSize(font_size) => self.font_size = font_size,
EditorAction::SetSoftWrap(soft_wrap) => self.soft_wrap = soft_wrap,
EditorAction::SetUseCustomFont(use_custom_font) => {
- self.use_custom_font = use_custom_font
+ self.use_custom_font = use_custom_font;
}
EditorAction::SetCustomFont(custom_font) => self.custom_font = custom_font,