mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Merge pull request #2123 from RachelBryk/nonmodal-isoprops
Make iso properties non modal.
This commit is contained in:
@ -1099,9 +1099,8 @@ void CGameListCtrl::OnProperties(wxCommandEvent& WXUNUSED (event))
|
||||
if (!iso)
|
||||
return;
|
||||
|
||||
CISOProperties ISOProperties(iso->GetFileName(), this);
|
||||
if (ISOProperties.ShowModal() == wxID_OK)
|
||||
Update();
|
||||
CISOProperties* ISOProperties = new CISOProperties(iso->GetFileName(), this);
|
||||
ISOProperties->Show();
|
||||
}
|
||||
|
||||
void CGameListCtrl::OnWiki(wxCommandEvent& WXUNUSED (event))
|
||||
|
Reference in New Issue
Block a user