From b369af826b1952254999ada55cc4997b26a898b3 Mon Sep 17 00:00:00 2001 From: l-const Date: Sun, 25 Aug 2024 22:52:55 +0300 Subject: [PATCH] Change the default hold value when creating new profile as it creates issues. #284 --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 99aee50..2652b6a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -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, } } }