From bea44e5c1b982d05314b72452b94fe288071a496 Mon Sep 17 00:00:00 2001 From: Adolfo Jayme Barrientos Date: Tue, 12 Mar 2019 21:19:29 -0600 Subject: [PATCH] =?UTF-8?q?=E2=80=9CLarge=E2=80=9D=20LibreOffice=20icons?= =?UTF-8?q?=20are=2024=E2=80=AF=C3=97=E2=80=AF24=20pixel,=20as=20you?= =?UTF-8?q?=E2=80=99d=20expect?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Galaxy theme was the only odd duck to use 26 × 26 pixel icons. We’ve removed it, but the Change Icon dialog was still reporting this misleading value. Spotted by Rizal Muttaqin. Change-Id: I4f82727b93239a32f7eab5473baa3b8705abde29 Reviewed-on: https://gerrit.libreoffice.org/69148 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- cui/source/customize/cfg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index dc878953978c8..dd9219cd0b07c 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -2643,7 +2643,7 @@ SvxIconSelectorDialog::SvxIconSelectorDialog(weld::Window *pWindow, m_nExpectedSize = 16; if (SvxConfigPageHelper::GetImageType() & css::ui::ImageType::SIZE_LARGE) - m_nExpectedSize = 26; + m_nExpectedSize = 24; else if (SvxConfigPageHelper::GetImageType() & css::ui::ImageType::SIZE_32) m_nExpectedSize = 32;