URI: 
       Font tool now can be used in outline edit mode. - icy_draw - icy_draw is the successor to mystic draw. fork / mirror
  HTML git clone https://git.drkhsh.at/icy_draw.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 6d9faf5bee0de57c903635a48a046b92d647518f
   DIR parent 2ec02f9657d8628da64ad832ac8b39059b904977
  HTML Author: Mike Krüger <mkrueger@posteo.de>
       Date:   Fri, 22 Sep 2023 09:32:23 +0200
       
       Font tool now can be used in outline edit mode.
       
       It renders the raw data in that case.
       
       Diffstat:
         M src/model/tools/font_imp.rs         |       8 +++++++-
       
       1 file changed, 7 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/src/model/tools/font_imp.rs b/src/model/tools/font_imp.rs
       @@ -476,11 +476,17 @@ impl Tool for FontTool {
                                fl!(crate::LANGUAGE_LOADER, "undo-render_character"),
                                OperationType::RenderCharacter,
                            );
       +
       +                let outline_style = if editor.outline_font_mode {
       +                    usize::MAX
       +                } else {
       +                    Settings::get_font_outline_style()
       +                };
                        editor
                            .buffer_view
                            .lock()
                            .get_edit_state_mut()
       -                    .set_outline_style(Settings::get_font_outline_style());
       +                    .set_outline_style(outline_style);
        
                        let _ = editor
                            .buffer_view