mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-19 19:00:09 +02:00
Merge pull request #691 from Armada651/veto_fix
CFrame: Handle close events that can't be vetoed.
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user