commit 9b95782bda63188d6c5851254affcd38b995052c
parent dbfcd5babb331239def3201f15fbaf248b26a0a3
Author: cfillion <cfillion@users.noreply.github.com>
Date: Tue, 20 Jun 2017 17:31:19 -0400
browser: enable Last Update column by default
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/browser.cpp b/src/browser.cpp
@@ -79,13 +79,13 @@ void Browser::onInit()
m_list = createControl<ListView>(IDC_LIST, ListView::Columns{
{AUTO_STR("Status"), 23, ListView::NoLabelFlag},
- {AUTO_STR("Package"), 380},
- {AUTO_STR("Category"), 150},
- {AUTO_STR("Version"), 80},
+ {AUTO_STR("Package"), 345},
+ {AUTO_STR("Category"), 105},
+ {AUTO_STR("Version"), 55},
{AUTO_STR("Author"), 95},
{AUTO_STR("Type"), 70},
{AUTO_STR("Repository"), 120, ListView::CollapseFlag},
- {AUTO_STR("Last Update"), 120, ListView::CollapseFlag},
+ {AUTO_STR("Last Update"), 105},
});
m_list->onActivate([=] { aboutPackage(m_list->itemUnderMouse()); });