<div dir="ltr"><div>One thing I'm looking at right now is changing the font style and size dropdown width. With Gnome 3.10 out of the box, I can fit 7 digits into the size box ;-) The font style dropdown also feels a bit too big. So I trimmed 25% off the style name and 33% from the font size which still leaves plenty of room. I didn't consider to change the font name because it seems fine and they are often longer than style names.<br>
<br></div><div>The first change is in a .src file so I can't do any special logic coding and it doesn't seem like it should be necessary with APPFONT dimensions. Would it be okay if we trimmed those values somewhat? I haven't looked yet if logical dimensions are based on dpi or font size so maybe that should be changed. My fixes can mostly be proven to not break the standard-res behavior, but these two can't, And they might not necessarily look good on Macs or various other scripts either.<br>
</div>
<div><br></div><div>Thanks!<br></div><div><br></div><div>-Keith<br>--------<br>diff --git a/svx/source/tbxctrls/tbcontrl.src b/svx/source/tbxctrls/tbcontrl.src<br>
index 4d2cfbc..665f0fa 100644<br>--- a/svx/source/tbxctrls/tbcontrl.src<br>+++ b/svx/source/tbxctrls/tbcontrl.src<br>@@ -74,7 +74,7 @@ String RID_SVXSTR_FRAME_COLOR<br> ComboBox RID_SVXTBX_STYLE<br> {<br> HelpId = HID_STYLE_LISTBOX ;<br>
- Size = MAP_APPFONT ( 67 , 86 ) ;<br>+ Size = MAP_APPFONT ( 50 , 86 ) ;<br> DropDown = TRUE ;<br> Sort = TRUE ;<br> AutoHScroll = TRUE ;<br>diff --git a/svx/source/tbxctrls/tbunocontroller.cxx b/svx/source/tbxctrls/tbunocontroller.cxx<br>
index 36e257e..c343844 100644<br>--- a/svx/source/tbxctrls/tbunocontroller.cxx<br>+++ b/svx/source/tbxctrls/tbunocontroller.cxx<br>@@ -85,7 +85,7 @@ SvxFontSizeBox_Impl::SvxFontSizeBox_Impl(<br> FontSizeBox( _pParent, WinBits( WB_DROPDOWN ) ),<br>
<br> m_pCtrl ( &_rCtrl ),<br>- m_aLogicalSize ( 30,100 ),<br>+ m_aLogicalSize ( 20,100 ),<br> m_bRelease ( true ),<br> m_xDispatchProvider ( _rDispatchProvider ),<br>
m_xFrame ( _xFrame )<br>
<br></div></div>