virtual listview needs this hack after all
This commit is contained in:
parent
0407bb2e86
commit
8b94d5f6f2
|
@ -539,10 +539,10 @@ namespace BizHawk
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
//it is conceivable that you will need this. you wouldnt be able to conceive of why, though. obscure message loop flakiness when exceptions are thrown from the message loop...
|
//it is conceivable that you will need this. you wouldnt be able to conceive of why, though. obscure message loop flakiness when exceptions are thrown from the message loop...
|
||||||
//case (int)WindowsMessage.WM_SETFOCUS:
|
case (int)WindowsMessage.WM_SETFOCUS:
|
||||||
// if(SelectedIndices.Count>0 && SelectedIndices[0] >= VirtualListSize)
|
if (SelectedIndices.Count > 0 && SelectedIndices[0] >= VirtualListSize)
|
||||||
// messageProcessed = true;
|
messageProcessed = true;
|
||||||
// break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue