diff options
Diffstat (limited to 'src/components/preference_pages/editor.rs')
| -rw-r--r-- | src/components/preference_pages/editor.rs | 2 |
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, |