URI: 
       add_recent file now works for save…as - 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 7278ada04f32871b6601179dd200ebd3b87863c2
   DIR parent 6d9faf5bee0de57c903635a48a046b92d647518f
  HTML Author: Mike Krüger <mkrueger@posteo.de>
       Date:   Fri, 22 Sep 2023 09:55:05 +0200
       
       add_recent file now works for save…as
       
       Diffstat:
         M src/ui/settings.rs                  |       3 ---
       
       1 file changed, 0 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/src/ui/settings.rs b/src/ui/settings.rs
       @@ -92,9 +92,6 @@ impl Settings {
        
            pub fn add_recent_file(file: &Path) {
                unsafe {
       -            if !file.exists() {
       -                return;
       -            }
                    let file = file.to_path_buf();
                    for i in 0..SETTINGS.recent_files.len() {
                        if SETTINGS.recent_files[i] == file {