[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - sc/source

Caolán McNamara caolanm at redhat.com
Mon Jan 13 06:26:03 PST 2014


 sc/source/ui/src/condformatdlg.src |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

New commits:
commit a79ce257ae9974f14c7ac1d9adc990a54ae554b7
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Jan 13 13:34:16 2014 +0000

    Related: rhbz#1047871 conditional formatting doesn't fit on screen
    
    Change-Id: I886030c056fe802279f9e16c6f85736b0c4587c6
    (cherry picked from commit 6d2ffbaeced98769912f2b4769fc23093b3d8d7f)
    Reviewed-on: https://gerrit.libreoffice.org/7406
    Reviewed-by: Eike Rathke <erack at redhat.com>
    Tested-by: Eike Rathke <erack at redhat.com>

diff --git a/sc/source/ui/src/condformatdlg.src b/sc/source/ui/src/condformatdlg.src
index 0594c5b..4d476a0 100644
--- a/sc/source/ui/src/condformatdlg.src
+++ b/sc/source/ui/src/condformatdlg.src
@@ -14,32 +14,32 @@ ModalDialog RID_SCDLG_CONDFORMAT
     HelpID = "sc:ModalDialog:RID_SCDLG_CONDFORMAT";
     OutputSize = TRUE;
     Hide = TRUE;
-    Size = MAP_APPFONT ( 300, 300 );
+    Size = MAP_APPFONT ( 300, 265 );
     Text [ en-US ] = "Conditional Formatting for";
     Moveable = TRUE;
     Closeable = TRUE;
     OkButton BTN_OK
     {
-        Pos = MAP_APPFONT ( 190, 280 );
+        Pos = MAP_APPFONT ( 190, 245 );
         Size = MAP_APPFONT ( 50, 14 );
         TabStop = TRUE;
     };
     CancelButton BTN_CANCEL
     {
-        Pos = MAP_APPFONT ( 245, 280 );
+        Pos = MAP_APPFONT ( 245, 245 );
         Size = MAP_APPFONT ( 50, 14 );
         TabStop = TRUE;
     };
     PushButton BTN_ADD
     {
-        Pos = MAP_APPFONT( 5, 245 );
+        Pos = MAP_APPFONT( 5, 210 );
         Size = MAP_APPFONT( 50, 14 );
         Text [ en-US ] = "Add";
         TabStop = TRUE;
     };
     PushButton BTN_REMOVE
     {
-        Pos = MAP_APPFONT( 60, 245 );
+        Pos = MAP_APPFONT( 60, 210 );
         Size = MAP_APPFONT( 50, 14 );
         Text [ en-US ] = "Remove";
         TabStop = TRUE;
@@ -47,26 +47,26 @@ ModalDialog RID_SCDLG_CONDFORMAT
     Control CTRL_LIST
     {
         Pos = MAP_APPFONT( 5, 20 );
-        Size = MAP_APPFONT( 290, 220 );
+        Size = MAP_APPFONT( 290, 185 );
         DialogControl = TRUE;
         Border = TRUE;
     };
     FixedText FT_RANGE
     {
-        Pos = MAP_APPFONT( 5, 262 );
+        Pos = MAP_APPFONT( 5, 227 );
         Size = MAP_APPFONT( 50, 16 );
         Text [ en-US ] = "Range:";
     };
     Edit ED_RANGE
     {
-        Pos = MAP_APPFONT( 60, 262 );
+        Pos = MAP_APPFONT( 60, 227 );
         Size = MAP_APPFONT( 182, 14 );
         Border = TRUE;
         TabStop = TRUE;
     };
     ImageButton RB_RANGE
     {
-        Pos = MAP_APPFONT( 245, 262 );
+        Pos = MAP_APPFONT( 245, 227 );
         Size = MAP_APPFONT( 14, 14 );
         Border = TRUE;
         TabStop = TRUE;


More information about the Libreoffice-commits mailing list