From 258a686af3d33cd8e5b70eda895128734ce5385b Mon Sep 17 00:00:00 2001 From: nekro <57593510+nekrogenesis@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:25:02 +0200 Subject: [PATCH] master: fix incorrect default val (#613) The default value for `mfact` is `0.55`. https://github.com/hyprwm/Hyprland/blob/34413d1f367b56e17614ee0455b6bf0b61a5aed1/src/config/ConfigManager.cpp#L427 --- pages/Configuring/Master-Layout.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Configuring/Master-Layout.md b/pages/Configuring/Master-Layout.md index 61496bf..b52ca77 100644 --- a/pages/Configuring/Master-Layout.md +++ b/pages/Configuring/Master-Layout.md @@ -18,7 +18,7 @@ _category name `master`_ | --- | --- | --- | --- | | allow_small_split | enable adding additional master windows in a horizontal split style | bool | false | | special_scale_factor | the scale of the special workspace windows. [0.0 - 1.0] | float | 1 | -| mfact | master split factor, the ratio of master split, relative float delta (e.g `-0.2` or `+0.2`) or `exact` followed by a the exact float value (e.g. `exact 0.55`) [0.0 - 1.0] | floatvalue | 0.5 | +| mfact | master split factor, the ratio of master split, relative float delta (e.g `-0.2` or `+0.2`) or `exact` followed by a the exact float value (e.g. `exact 0.55`) [0.0 - 1.0] | floatvalue | 0.55 | | new_is_master | whether a newly open window should replace the master or join the slaves. | bool | true | | new_on_top | whether a newly open window should be on the top of the stack | bool | false | | no_gaps_when_only | whether to apply gaps when there is only one window on a workspace, aka. smart gaps. (default: disabled - 0) no border - 1, with border - 2 [0/1/2] | int | 0 |