mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 14:39:01 +01:00
Merge pull request #691 from Armada651/veto_fix
CFrame: Handle close events that can't be vetoed.
This commit is contained in:
commit
d704ebdb40
@ -507,7 +507,10 @@ void CFrame::OnClose(wxCloseEvent& event)
|
||||
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
||||
{
|
||||
DoStop();
|
||||
event.Veto();
|
||||
if (event.CanVeto())
|
||||
{
|
||||
event.Veto();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -806,7 +806,10 @@ void CFrame::OnRenderParentClose(wxCloseEvent& event)
|
||||
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
||||
{
|
||||
DoStop();
|
||||
event.Veto();
|
||||
if (event.CanVeto())
|
||||
{
|
||||
event.Veto();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user