mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00: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
2 changed files with 8 additions and 2 deletions
|
@ -507,7 +507,10 @@ void CFrame::OnClose(wxCloseEvent& event)
|
||||||
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
||||||
{
|
{
|
||||||
DoStop();
|
DoStop();
|
||||||
event.Veto();
|
if (event.CanVeto())
|
||||||
|
{
|
||||||
|
event.Veto();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -806,7 +806,10 @@ void CFrame::OnRenderParentClose(wxCloseEvent& event)
|
||||||
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
||||||
{
|
{
|
||||||
DoStop();
|
DoStop();
|
||||||
event.Veto();
|
if (event.CanVeto())
|
||||||
|
{
|
||||||
|
event.Veto();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue