aboutsummaryrefslogtreecommitdiff
path: root/src/engine_tab/EngineTabBF.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-02-26 20:34:42 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-02-26 20:34:42 +0100
commite601902dd5a9f023594fef6a0f4995e59b4d9a0e (patch)
tree4ed1fdbaa9503a2dcfbc701377d9f5d2309858c3 /src/engine_tab/EngineTabBF.cpp
parentca6c1b1e75e771e3bea596367e502b77dea2c3aa (diff)
Improve engine managemen
Diffstat (limited to 'src/engine_tab/EngineTabBF.cpp')
-rw-r--r--src/engine_tab/EngineTabBF.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine_tab/EngineTabBF.cpp b/src/engine_tab/EngineTabBF.cpp
index 0e33939..90ba99d 100644
--- a/src/engine_tab/EngineTabBF.cpp
+++ b/src/engine_tab/EngineTabBF.cpp
@@ -53,6 +53,9 @@ EngineTabBF::EngineTabBF( wxWindow* parent, wxWindowID id, const wxPoint& pos, c
save_button = new wxButton( this, ENGINE_SAVE_CONF_BUTTON, wxT("Save"), wxDefaultPosition, wxDefaultSize, 0 );
main_sizer->Add( save_button, 0, wxALL|wxEXPAND, 5 );
+ delete_button = new wxButton( this, ENGINE_DELETE_CONF_BUTTON, wxT("Delete engine"), wxDefaultPosition, wxDefaultSize, 0 );
+ main_sizer->Add( delete_button, 0, wxALL|wxEXPAND, 5 );
+
this->SetSizer( main_sizer );
this->Layout();