improve grid auto sizing algorithm (#188898)

* improve grid auto sizing algorithm

fixes #187431

* update description

---------

Co-authored-by: Benjamin Pasero <benjamin.pasero@gmail.com>
This commit is contained in:
João Moreno
2023-07-26 09:45:14 +01:00
committed by GitHub
parent cdf84c6685
commit fc450f0726
3 changed files with 18 additions and 9 deletions

View File

@@ -181,7 +181,7 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
'enum': ['auto', 'distribute', 'split'],
'default': 'auto',
'enumDescriptions': [
localize('workbench.editor.splitSizingAuto', "Splits all the editor groups to equal parts unless a part has been changed in size."),
localize('workbench.editor.splitSizingAuto', "Splits the active editor group to equal parts, unless all editor groups are already in equal parts. In that case, splits all the editor groups to equal parts."),
localize('workbench.editor.splitSizingDistribute', "Splits all the editor groups to equal parts."),
localize('workbench.editor.splitSizingSplit', "Splits the active editor group to equal parts.")
],