From 2795327f2226589751f44d81a53312d2f0a71188 Mon Sep 17 00:00:00 2001 From: Brendan Hagan Date: Mon, 29 Apr 2024 13:47:57 -0400 Subject: [PATCH] misc: increase stats column width by 50% (fixes #71) (#72) This isn't a great solution since it's still just a static number, but it does at least improve the situation a bit for now. --- src/gui/set/stats_panel.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gui/set/stats_panel.cpp b/src/gui/set/stats_panel.cpp index f31ddc29..5f1fd51d 100644 --- a/src/gui/set/stats_panel.cpp +++ b/src/gui/set/stats_panel.cpp @@ -105,8 +105,7 @@ public: , prefered_dimension_count(dimension_count) , show_empty(show_empty) { - //item_size = wxSize(150, 23); - subcolumns[0].size = wxSize(140,23); + subcolumns[0].size = wxSize(210, 23); if (dimension_count > 0) { subcolumns[0].selection = NO_SELECTION; subcolumns[0].can_select = false;