URI: 
       Fixed clippy issues. - 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 91cc00da82518fff310fdcac10cd8378e7cb3786
   DIR parent 85f62f5f61d59af743c0228b75b3455f6764c440
  HTML Author: Mike Krüger <mkrueger@posteo.de>
       Date:   Mon,  9 Oct 2023 13:59:31 +0200
       
       Fixed clippy issues.
       
       Diffstat:
         M src/paint/line.rs                   |       1 +
         M src/paint/mod.rs                    |       2 +-
       
       2 files changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/src/paint/line.rs b/src/paint/line.rs
       @@ -112,6 +112,7 @@ pub fn draw_line(buffer_view: &mut BufferView, from: impl Into<Position>, to: im
                            plot_point(buffer_view, point + Position::new(-1, 0), mode.clone(), color_mode, PointRole::NWCorner);
                            PointRole::SECorner
                        } else {
       +                    // case 4
                            if last.y == point.y {
                                println!("top side right 2");
                                PointRole::TopSide
   DIR diff --git a/src/paint/mod.rs b/src/paint/mod.rs
       @@ -342,7 +342,7 @@ pub fn plot_point(buffer_view: &mut BufferView, pos: impl Into<Position>, mut mo
            }
        }
        
       -fn get_outline_char(ch: AttributedChar, point_role: PointRole) -> char {
       +fn get_outline_char(_ch: AttributedChar, point_role: PointRole) -> char {
            let ch = match point_role {
                PointRole::NWCorner => 'E',
                PointRole::NECorner => 'F',