From 2529df9cdbec5570d2e410648a220f9ac80163a1 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Sat, 1 Jul 2006 07:25:37 +0000 Subject: [PATCH] Originally committed to SVN as r455. --- core/dialog_attachments.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/dialog_attachments.cpp b/core/dialog_attachments.cpp index aff0ea872..1c2cac784 100644 --- a/core/dialog_attachments.cpp +++ b/core/dialog_attachments.cpp @@ -53,7 +53,7 @@ DialogAttachments::DialogAttachments(wxWindow *parent) : wxDialog(parent,-1,_("Attachment List"),wxDefaultPosition,wxDefaultSize) { // List view - listView = new wxListView(this,-1,wxDefaultPosition,wxSize(400,200)); + listView = new wxListView(this,-1,wxDefaultPosition,wxSize(500,200)); UpdateList(); // Buttons sizer @@ -80,9 +80,9 @@ void DialogAttachments::UpdateList() { listView->ClearAll(); // Insert list columns - listView->InsertColumn(0, _("Attachment name"), wxLIST_FORMAT_LEFT, 200); - listView->InsertColumn(1, _("Size"), wxLIST_FORMAT_LEFT, 90); - listView->InsertColumn(2, _("Group"), wxLIST_FORMAT_LEFT, 90); + listView->InsertColumn(0, _("Attachment name"), wxLIST_FORMAT_LEFT, 280); + listView->InsertColumn(1, _("Size"), wxLIST_FORMAT_LEFT, 100); + listView->InsertColumn(2, _("Group"), wxLIST_FORMAT_LEFT, 100); // Fill list AssAttachment *attach;