From 1166a58ec798adf69c3a44f793541d041a126826 Mon Sep 17 00:00:00 2001 From: dan Date: Tue, 19 Oct 2004 04:28:26 +0000 Subject: [PATCH] Fixed the layout (WMLists to have the same height for all columns) --- WPrefs.app/FontSimple.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WPrefs.app/FontSimple.c b/WPrefs.app/FontSimple.c index 016582d7..aa6e029d 100644 --- a/WPrefs.app/FontSimple.c +++ b/WPrefs.app/FontSimple.c @@ -630,7 +630,7 @@ createPanel(Panel *p) WMAddBoxSubview(hbox, WMWidgetView(vbox), False, True, 130, 0, 10); WMSetBoxHorizontal(vbox, False); panel->optionP = WMCreatePopUpButton(vbox); - WMAddBoxSubviewAtEnd(vbox, WMWidgetView(panel->optionP), False, True, 24, 0, 8); + WMAddBoxSubviewAtEnd(vbox, WMWidgetView(panel->optionP), False, True, 20, 0, 8); for (i= 0; fontOptions[i].option; i++) { WMAddPopUpButtonItem(panel->optionP, _(fontOptions[i].label)); @@ -661,7 +661,7 @@ createPanel(Panel *p) // family panel->familyL = WMCreateList(vbox); - WMAddBoxSubview(vbox, WMWidgetView(panel->familyL), True, True, 0, 0, 0); + WMAddBoxSubview(vbox, WMWidgetView(panel->familyL), True, True, 0, 0, 4); if (panel->fonts) { WMListItem *item;