diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-27 16:29:14 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-27 16:29:14 +0100 |
| commit | 0e18d4ac8718414fd6192cc2983b7cd44f5fd28a (patch) | |
| tree | 45c47dae3573e75fa98505378da9641a6936882b /src/game_tab/editor/LiveEngineDialogFB.cpp | |
| parent | 5f209bd1d566adc21b061633781cbe54eb72648a (diff) | |
Improve live engine dialog
Diffstat (limited to 'src/game_tab/editor/LiveEngineDialogFB.cpp')
| -rw-r--r-- | src/game_tab/editor/LiveEngineDialogFB.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game_tab/editor/LiveEngineDialogFB.cpp b/src/game_tab/editor/LiveEngineDialogFB.cpp index 03f9435..4d96ed4 100644 --- a/src/game_tab/editor/LiveEngineDialogFB.cpp +++ b/src/game_tab/editor/LiveEngineDialogFB.cpp @@ -30,8 +30,8 @@ LiveEngineDialogFB::LiveEngineDialogFB( wxWindow* parent, wxWindowID id, const w main_sizer->Add( current_engine_sizer, 0, wxEXPAND, 5 ); - lines_list = new wxListBox( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, NULL, 0 ); - main_sizer->Add( lines_list, 1, wxALL|wxEXPAND, 5 ); + lines_list = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT ); + main_sizer->Add( lines_list, 0, wxALL|wxEXPAND, 5 ); this->SetSizer( main_sizer ); |
