https://bugs.documentfoundation.org/show_bug.cgi?id=142947
--- Comment #9 from Heiko Tietze <[email protected]> --- This code sizes the triangles equally but it depends only on the view setting for toolbars. Small icons on Notebookbars don't fit the size of large on toolbars. The toolbox is not aware of the position (NB, TB or sidebar) and we shouldn't make it dependent. - const tools::Long nSize = rDropDownRect.getWidth() - 2 * nMargin; + tools::Long nSize; + switch (officecfg::Office::Common::Misc::SymbolSet::get()) + { + case 0: nSize = 10 - 2 * nMargin; break; //S + case 1: nSize = 13 - 2 * nMargin; break; //L + case 2: nSize = 13 - 2 * nMargin; break; //Auto + case 3: nSize = 16 - 2 * nMargin; break; //XL + } My take: WF resp. size the controls containing icons in NB equally. -- You are receiving this mail because: You are the assignee for the bug.
