aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab/editor/LiveEngineDialogFB.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_tab/editor/LiveEngineDialogFB.cpp')
-rw-r--r--src/game_tab/editor/LiveEngineDialogFB.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/game_tab/editor/LiveEngineDialogFB.cpp b/src/game_tab/editor/LiveEngineDialogFB.cpp
index 4d96ed4..11234dd 100644
--- a/src/game_tab/editor/LiveEngineDialogFB.cpp
+++ b/src/game_tab/editor/LiveEngineDialogFB.cpp
@@ -25,13 +25,19 @@ LiveEngineDialogFB::LiveEngineDialogFB( wxWindow* parent, wxWindowID id, const w
current_engine = new wxStaticText( this, wxID_ANY, wxT("???"), wxDefaultPosition, wxDefaultSize, 0 );
current_engine->Wrap( -1 );
- current_engine_sizer->Add( current_engine, 0, wxALL, 5 );
+ current_engine_sizer->Add( current_engine, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+
+
+ current_engine_sizer->Add( 0, 0, 1, wxEXPAND, 5 );
+
+ engine_pause_button = new wxButton( this, LIVE_ENGINE_PAUSE_BUTTON, wxT("Pause"), wxDefaultPosition, wxDefaultSize, 0 );
+ current_engine_sizer->Add( engine_pause_button, 0, wxALL, 5 );
main_sizer->Add( current_engine_sizer, 0, wxEXPAND, 5 );
lines_list = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT );
- main_sizer->Add( lines_list, 0, wxALL|wxEXPAND, 5 );
+ main_sizer->Add( lines_list, 1, wxALL|wxEXPAND, 5 );
this->SetSizer( main_sizer );