vcl/source/window/builder.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a44c77d6548fac62f760ae152ddc09381d005129 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Oct 7 19:53:56 2021 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Fri Oct 8 12:42:21 2021 +0200 tdf#144984 default edit width got wider at... commit f72013ca65c7a33991d5fb124b919fe7cde269e2 Author: Caolán McNamara <[email protected]> Date: Thu Aug 26 15:24:25 2021 +0100 use max of avg digit or 'average char' width to measure Edit space where this default was forgotten Change-Id: I50933ff5c1b8735624609a884fb9fc7701df7f97 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123232 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx index b29d58455f5f..45237e03fb83 100644 --- a/vcl/source/window/builder.cxx +++ b/vcl/source/window/builder.cxx @@ -2256,7 +2256,7 @@ namespace BuilderUtils OString sWidthChars("width-chars"); VclBuilder::stringmap::iterator aFind = rMap.find(sWidthChars); if (aFind == rMap.end()) - rMap[sWidthChars] = "25"; + rMap[sWidthChars] = "20"; } bool extractDropdown(VclBuilder::stringmap &rMap)
