Right align sizes in wxGenericFileDialog

Numeric values should be right-aligned.

See #17060.
This commit is contained in:
Troels Knakkergaard 2016-03-05 03:21:57 +01:00 committed by Vadim Zeitlin
parent cda7209101
commit 10a2049093

View File

@ -421,7 +421,7 @@ void wxFileListCtrl::ChangeToReportMode()
GetTextExtent(txt, &w, &h);
InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT, w );
InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT, w/2 );
InsertColumn( 1, _("Size"), wxLIST_FORMAT_RIGHT, w/2 );
InsertColumn( 2, _("Type"), wxLIST_FORMAT_LEFT, w/2 );
InsertColumn( 3, _("Modified"), wxLIST_FORMAT_LEFT, w );
#if defined(__UNIX__)