diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-09-29 21:13:11 -0300 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-10-03 09:28:51 +0100 |
commit | 737ab5165ce9e8eaff4324df290a38924cbbeace (patch) | |
tree | 408f46ad19e6a35c07413c36ad613a6d7acf111f /sc | |
parent | d72d24bec5eb488a9eadcd6ec2441a6f85b8c5cc (diff) |
Fix for bug fdo#41310 - Need more room for localized string
The following patch resizes the sheet protection dialog to
display localized strings without truncation
Sizes adjusted for fontsize = 10
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/miscdlgs/protectiondlg.src | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/miscdlgs/protectiondlg.src b/sc/source/ui/miscdlgs/protectiondlg.src index aca43c6beeb3..ca4e9bedb4af 100644 --- a/sc/source/ui/miscdlgs/protectiondlg.src +++ b/sc/source/ui/miscdlgs/protectiondlg.src @@ -31,24 +31,24 @@ ModalDialog RID_SCDLG_TABPROTECTION { HelpID = "sc:ModalDialog:RID_SCDLG_TABPROTECTION"; Text [ en-US ] = "Protect Sheet" ; - Size = MAP_APPFONT ( 220 , 135 ) ; + Size = MAP_APPFONT ( 250 , 135 ) ; Moveable = TRUE ; Closeable = TRUE ; OKButton BTN_OK { - Pos = MAP_APPFONT ( 164 , 6 ) ; + Pos = MAP_APPFONT ( 194 , 6 ) ; Size = MAP_APPFONT ( 50 , 14 ) ; DefButton = TRUE ; }; CancelButton BTN_CANCEL { - Pos = MAP_APPFONT ( 164 , 23 ) ; + Pos = MAP_APPFONT ( 194 , 23 ) ; Size = MAP_APPFONT ( 50 , 14 ) ; }; HelpButton BTN_HELP { - Pos = MAP_APPFONT ( 164 , 43 ) ; + Pos = MAP_APPFONT ( 194 , 43 ) ; Size = MAP_APPFONT ( 50 , 14 ) ; }; @@ -56,7 +56,7 @@ ModalDialog RID_SCDLG_TABPROTECTION { HelpID = "sc:CheckBox:RID_SCDLG_TABPROTECTION:BTN_PROTECT"; Pos = MAP_APPFONT ( 6 , 6 ) ; - Size = MAP_APPFONT ( 150 , 10 ); + Size = MAP_APPFONT ( 180 , 10 ); Text [ en-US ] = "P~rotect this sheet and the contents of protected cells" ; }; @@ -98,7 +98,7 @@ ModalDialog RID_SCDLG_TABPROTECTION FixedLine FL_OPTIONS { Pos = MAP_APPFONT ( 6, 60 ); - Size = MAP_APPFONT ( 150, 8 ); + Size = MAP_APPFONT ( 180, 8 ); Text [ en-US ] = "Options"; }; |