Originally committed to SVN as r455.
This commit is contained in:
parent
ad91cb4460
commit
2529df9cdb
1 changed files with 4 additions and 4 deletions
|
@ -53,7 +53,7 @@ DialogAttachments::DialogAttachments(wxWindow *parent)
|
||||||
: wxDialog(parent,-1,_("Attachment List"),wxDefaultPosition,wxDefaultSize)
|
: wxDialog(parent,-1,_("Attachment List"),wxDefaultPosition,wxDefaultSize)
|
||||||
{
|
{
|
||||||
// List view
|
// List view
|
||||||
listView = new wxListView(this,-1,wxDefaultPosition,wxSize(400,200));
|
listView = new wxListView(this,-1,wxDefaultPosition,wxSize(500,200));
|
||||||
UpdateList();
|
UpdateList();
|
||||||
|
|
||||||
// Buttons sizer
|
// Buttons sizer
|
||||||
|
@ -80,9 +80,9 @@ void DialogAttachments::UpdateList() {
|
||||||
listView->ClearAll();
|
listView->ClearAll();
|
||||||
|
|
||||||
// Insert list columns
|
// Insert list columns
|
||||||
listView->InsertColumn(0, _("Attachment name"), wxLIST_FORMAT_LEFT, 200);
|
listView->InsertColumn(0, _("Attachment name"), wxLIST_FORMAT_LEFT, 280);
|
||||||
listView->InsertColumn(1, _("Size"), wxLIST_FORMAT_LEFT, 90);
|
listView->InsertColumn(1, _("Size"), wxLIST_FORMAT_LEFT, 100);
|
||||||
listView->InsertColumn(2, _("Group"), wxLIST_FORMAT_LEFT, 90);
|
listView->InsertColumn(2, _("Group"), wxLIST_FORMAT_LEFT, 100);
|
||||||
|
|
||||||
// Fill list
|
// Fill list
|
||||||
AssAttachment *attach;
|
AssAttachment *attach;
|
||||||
|
|
Loading…
Reference in a new issue