diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-12-01 17:05:57 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-12-01 17:07:30 -0500 |
commit | 117ea10a00ab0dad44c6968ddd5c04e2325d083d (patch) | |
tree | 0b23faa4e1eab909445ccf93a6d2ae2a9967524f | |
parent | 5a392ae6dca41d9bd32eb874d32aee16c649649b (diff) |
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)
-rw-r--r-- | cui/source/options/optgdlg.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optgdlg.src b/cui/source/options/optgdlg.src index 7cbb7413c..7d0a80ce1 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 |