mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix a crash reported in r4671, plus a fix related to issue 1523 i forgot a month ago >.>
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4677 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -721,7 +721,7 @@ void CGameListCtrl::OnMouseMotion(wxMouseEvent& event)
|
|||||||
{
|
{
|
||||||
if (subitem == COLUMN_EMULATION_STATE)
|
if (subitem == COLUMN_EMULATION_STATE)
|
||||||
{
|
{
|
||||||
if (toolTip || lastItem == item) {
|
if (toolTip || lastItem == item || this != FindFocus()) {
|
||||||
event.Skip();
|
event.Skip();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1049,6 +1049,7 @@ void CISOProperties::PatchButtonClicked(wxCommandEvent& event)
|
|||||||
break;
|
break;
|
||||||
case ID_REMOVEPATCH:
|
case ID_REMOVEPATCH:
|
||||||
onFrame.erase(onFrame.begin() + Patches->GetSelection());
|
onFrame.erase(onFrame.begin() + Patches->GetSelection());
|
||||||
|
Patches->Delete(Cheats->GetSelection());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user