Hi there,

import CSV dialog window has two list boxes - language and charset. Both show 
just 6
options which seems to me quite uncomfortable to use. Could you please increase 
a bit
their height? My patch does that, but maybe too much - both show 28 items now, 
but still
fit into main dialog window (might have problems on some small resolutions), 
but making them
even a bit higher would be nice.

PS: Not sure if this is not waiting for rewriting
https://wiki.documentfoundation.org/Development/WidgetLayout#ListBoxes_and_ComboBoxes

Regards,
Petr
>From 41b8a9d6c6735b9d9adfae2ed90ddba2ea0e8706 Mon Sep 17 00:00:00 2001
From: Petr Vorel <petr.vo...@gmail.com>
Date: Thu, 14 Feb 2013 19:06:46 +0100
Subject: [PATCH] better usability of Import CSV dialog

display more items in import CSV dialog window in list boxes "Character
set" and "Language" (from current 6 to 28)

Change-Id: Ibbc554c6574ff635f8284914b948827453375062
---
 sc/source/ui/dbgui/asciiopt.src |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sc/source/ui/dbgui/asciiopt.src b/sc/source/ui/dbgui/asciiopt.src
index f03c1ce..410bb26 100644
--- a/sc/source/ui/dbgui/asciiopt.src
+++ b/sc/source/ui/dbgui/asciiopt.src
@@ -65,7 +65,7 @@ ModalDialog RID_SCDLG_ASCII
     {
         HelpID = "sc:ListBox:RID_SCDLG_ASCII:LB_CHARSET";
         Pos = MAP_APPFONT ( 76 , 14 ) ;
-        Size = MAP_APPFONT ( 130 , 61 ) ;
+        Size = MAP_APPFONT ( 130 , 250 ) ;
         TabStop = TRUE ;
         DropDown = TRUE ;
         Sort = TRUE;
@@ -82,7 +82,7 @@ ModalDialog RID_SCDLG_ASCII
     {
         HelpID = "sc:ListBox:RID_SCDLG_ASCII:LB_CUSTOMLANG";
         Pos = MAP_APPFONT ( 76 , 30 ) ;
-        Size = MAP_APPFONT ( 130 , 61 ) ;
+        Size = MAP_APPFONT ( 130 , 250 ) ;
         TabStop = TRUE ;
         DropDown = TRUE ;
         Sort = TRUE;
-- 
1.7.10.4

_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to