diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-25 19:30:23 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-25 19:30:23 +0100 |
| commit | 29f330f307e35acf9dba3a8456dec330ef578dd7 (patch) | |
| tree | d14022436d68c59adb14b93e08011c8ef4756ce3 /src/gui.cpp | |
| parent | 5df6e9395c4ec744f38e7ce874ff7c02e8a3afbd (diff) | |
Update tab management system
Diffstat (limited to 'src/gui.cpp')
| -rw-r--r-- | src/gui.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui.cpp b/src/gui.cpp index ae717a5..b122cb1 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -616,10 +616,14 @@ TabBase_TabImport::TabBase_TabImport( wxWindow* parent, wxWindowID id, const wxP wxBoxSizer* bSizer33; bSizer33 = new wxBoxSizer( wxHORIZONTAL ); + m_staticText29 = new wxStaticText( this, wxID_ANY, wxT("Database:"), wxDefaultPosition, wxDefaultSize, 0 ); + m_staticText29->Wrap( -1 ); + bSizer33->Add( m_staticText29, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 ); + opened_db_list = new wxComboBox( this, wxID_ANY, wxT("No other databases opened"), wxDefaultPosition, wxDefaultSize, 0, NULL, 0 ); bSizer33->Add( opened_db_list, 100, wxALL|wxEXPAND, 5 ); - import_from_db_button = new wxButton( this, wxID_ANY, wxT("Import Selected Games"), wxDefaultPosition, wxDefaultSize, 0 ); + import_from_db_button = new wxButton( this, wxID_ANY, wxT("Import Selection"), wxDefaultPosition, wxDefaultSize, 0 ); bSizer33->Add( import_from_db_button, 0, wxALL, 5 ); |
