aboutsummaryrefslogtreecommitdiff
path: root/src/base_tab/BasePanelBF.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-02-24 12:09:21 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-02-24 12:09:21 +0100
commit40c6df0e7c3f17204a6187eb2bc241f396720272 (patch)
tree52d97a27c701b31ef6cd833f84a4eefc3e7f826a /src/base_tab/BasePanelBF.cpp
parent32a0b3e31f1bb0024e96915f58afd991a992d945 (diff)
Improve BaseTab implementation for PGN files
Diffstat (limited to 'src/base_tab/BasePanelBF.cpp')
-rw-r--r--src/base_tab/BasePanelBF.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base_tab/BasePanelBF.cpp b/src/base_tab/BasePanelBF.cpp
index 4edf8b0..59dd152 100644
--- a/src/base_tab/BasePanelBF.cpp
+++ b/src/base_tab/BasePanelBF.cpp
@@ -33,7 +33,7 @@ BasePanelBF::BasePanelBF( wxWindow* parent, wxWindowID id, const wxPoint& pos, c
main_sizer->Add( top_sizer, 0, wxEXPAND, 5 );
- game_list = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxSize( -1,-1 ), wxLC_ICON );
+ game_list = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxSize( -1,-1 ), wxLC_ICON|wxLC_REPORT );
main_sizer->Add( game_list, 1, wxALL|wxEXPAND, 5 );
wxBoxSizer* bottom_sizer;