mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Qt: Make dialogues more consistent
This commit is contained in:
@ -168,7 +168,7 @@ void GeckoCodeWidget::AddCode()
|
||||
Gecko::GeckoCode code;
|
||||
code.enabled = true;
|
||||
|
||||
CheatCodeEditor ed;
|
||||
CheatCodeEditor ed(this);
|
||||
ed.SetGeckoCode(&code);
|
||||
|
||||
if (ed.exec())
|
||||
@ -188,7 +188,7 @@ void GeckoCodeWidget::EditCode()
|
||||
|
||||
int row = m_code_list->row(item);
|
||||
|
||||
CheatCodeEditor ed;
|
||||
CheatCodeEditor ed(this);
|
||||
|
||||
ed.SetGeckoCode(&m_gecko_codes[row]);
|
||||
|
||||
|
Reference in New Issue
Block a user