Kaydet (Commit) 89de7eef authored tarafından Ivan Timofeev's avatar Ivan Timofeev

fdo#47071: Undocked toolbars do not show all icons in special ratio

 restore the old behaviour (pre-1703501a)
 for floating toolbars.

Change-Id: I8435bd94a44744c5af7a3abdbeb99e8f7cf0af24
üst 779a1acf
...@@ -2073,7 +2073,7 @@ sal_uInt16 ToolBox::ImplCalcBreaks( long nWidth, long* pMaxLineWidth, sal_Bool b ...@@ -2073,7 +2073,7 @@ sal_uInt16 ToolBox::ImplCalcBreaks( long nWidth, long* pMaxLineWidth, sal_Bool b
else if ( it->meType == TOOLBOXITEM_SEPARATOR ) else if ( it->meType == TOOLBOXITEM_SEPARATOR )
{ {
nCurWidth = it->mnSepSize; nCurWidth = it->mnSepSize;
if ( ( it != lastVisible ) && (nLineWidth+nCurWidth+nMenuWidth > nWidthTotal) ) if ( !ImplIsFloatingMode() && ( it != lastVisible ) && (nLineWidth+nCurWidth+nMenuWidth > nWidthTotal) )
bBreak = sal_True; bBreak = sal_True;
} }
// treat breaks as separators, except when using old style toolbars (ie. no menu button) // treat breaks as separators, except when using old style toolbars (ie. no menu button)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment