mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
Fix issue with msgdialog not passing event back properly.
This commit is contained in:
parent
321f50bf7b
commit
5ecc7d5360
|
|
@ -85,6 +85,10 @@ private:
|
|||
{
|
||||
event->ignore();
|
||||
}
|
||||
else
|
||||
{
|
||||
QDialog::keyPressEvent(event);
|
||||
}
|
||||
}
|
||||
void closeEvent(QCloseEvent* event)
|
||||
{
|
||||
|
|
@ -93,6 +97,10 @@ private:
|
|||
{
|
||||
event->ignore();
|
||||
}
|
||||
else
|
||||
{
|
||||
QDialog::closeEvent(event);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue