From 9b988989ec3dc1316c5bdfa162b6ef8cfd21beff Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Mon, 30 Mar 2026 13:39:24 +0200 Subject: Apply some linting --- src/components/preference_pages/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/preference_pages/editor.rs') 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, -- cgit