Improve game import

This commit is contained in:
Loic Guegan 2022-02-26 14:22:17 +01:00
parent b1a82ff568
commit 2068f8c6c3

View file

@ -5,10 +5,12 @@
AppendGameDialog::AppendGameDialog(wxWindow *parent, GameBase *base)
: AppendGameDialogBF(parent), base(base) {
tinfos = MAINWIN->ListTabInfos();
for (TabInfos *i : tinfos) {
wxWindow *win = dynamic_cast<wxWindow *>(i);
game_list->Append(win->GetLabel());
for (TabInfos *i : MAINWIN->ListTabInfos()) {
if (i->type == TabInfos::GAME || i->type == TabInfos::BASE) {
wxWindow *win = dynamic_cast<wxWindow *>(i);
game_list->Append(win->GetLabel());
tinfos.push_back(i);
}
}
Bind(wxEVT_BUTTON, &AppendGameDialog::OnCancel, this,