From 512a59731b2e579b66325d0e9ce770919eecd685 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sat, 25 Nov 2023 01:45:04 +0000 Subject: [PATCH] config: default special_scale_factor to 1 --- src/config/ConfigManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 63aaa751..54ecadb5 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -189,7 +189,7 @@ void CConfigManager::setDefaultVars() { configValues["dwindle:force_split"].intValue = 0; configValues["dwindle:permanent_direction_override"].intValue = 0; configValues["dwindle:preserve_split"].intValue = 0; - configValues["dwindle:special_scale_factor"].floatValue = 0.8f; + configValues["dwindle:special_scale_factor"].floatValue = 1.f; configValues["dwindle:split_width_multiplier"].floatValue = 1.0f; configValues["dwindle:no_gaps_when_only"].intValue = 0; configValues["dwindle:use_active_for_splits"].intValue = 1; @@ -197,7 +197,7 @@ void CConfigManager::setDefaultVars() { configValues["dwindle:smart_split"].intValue = 0; configValues["dwindle:smart_resizing"].intValue = 1; - configValues["master:special_scale_factor"].floatValue = 0.8f; + configValues["master:special_scale_factor"].floatValue = 1.f; configValues["master:mfact"].floatValue = 0.55f; configValues["master:new_is_master"].intValue = 1; configValues["master:always_center_master"].intValue = 0;