Change the default hold value when creating new profile as it creates issues. #284

This commit is contained in:
l-const 2024-08-25 22:52:55 +03:00 committed by Jeremy Soller
parent 19e083b5d0
commit b369af826b

View file

@ -211,7 +211,7 @@ impl Default for Profile {
syntax_theme_light: COSMIC_THEME_LIGHT.to_string(),
tab_title: String::new(),
working_directory: String::new(),
hold: true,
hold: false,
}
}
}