[Libreoffice-commits] .: Branch 'libreoffice-3-3' - cui/source
Kohei Yoshida
kohei at kemper.freedesktop.org
Wed Dec 1 14:07:44 PST 2010
cui/source/options/optgdlg.src | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 117ea10a00ab0dad44c6968ddd5c04e2325d083d
Author: Kohei Yoshida <kyoshida at novell.com>
Date: Wed Dec 1 17:05:57 2010 -0500
Fixed the sizes of Tips and Extended tips check boxes.
The Tips check box control was too wide and it was overlapping with
the Extended tips check box, which prevented it from being clickable.
(fdo#32028)
diff --git a/cui/source/options/optgdlg.src b/cui/source/options/optgdlg.src
index 7cbb741..7d0a80c 100644
--- a/cui/source/options/optgdlg.src
+++ b/cui/source/options/optgdlg.src
@@ -51,13 +51,13 @@ TabPage OFA_TP_MISC
CheckBox CB_TOOLTIP
{
Pos = MAP_APPFONT( COL1, ROW1 );
- Size = MAP_APPFONT( WHOLE_WIDTH - COL1, RSC_CD_CHECKBOX_HEIGHT );
+ Size = MAP_APPFONT( COL3 - COL1, RSC_CD_CHECKBOX_HEIGHT );
Text [ en-US ] = "~Tips";
};
CheckBox CB_EXTHELP
{
Pos = MAP_APPFONT( COL3, ROW1 );
- Size = MAP_APPFONT( WHOLE_WIDTH - COL2, RSC_CD_CHECKBOX_HEIGHT );
+ Size = MAP_APPFONT( WHOLE_WIDTH - COL3, RSC_CD_CHECKBOX_HEIGHT );
Text [ en-US ] = "~Extended tips";
};
FixedText FT_HELPFORMAT
More information about the Libreoffice-commits
mailing list