mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 23:58:59 +00:00
Making cheats manager resizeable, maximizable, hideable (parentless), higher by default.
This commit is contained in:
parent
47aaca89eb
commit
983d5d1f73
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,7 @@ extern CFrame* main_frame;
|
||||||
static wxCheatsWindow *g_cheat_window;
|
static wxCheatsWindow *g_cheat_window;
|
||||||
|
|
||||||
wxCheatsWindow::wxCheatsWindow(wxWindow* const parent)
|
wxCheatsWindow::wxCheatsWindow(wxWindow* const parent)
|
||||||
: wxDialog(parent, wxID_ANY, _("Cheats Manager"), wxDefaultPosition, wxDefaultSize)
|
: wxDialog(parent, wxID_ANY, _("Cheats Manager"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxMAXIMIZE_BOX|wxMINIMIZE_BOX|wxDIALOG_NO_PARENT)
|
||||||
{
|
{
|
||||||
::g_cheat_window = this;
|
::g_cheat_window = this;
|
||||||
|
|
||||||
|
@ -57,6 +57,7 @@ wxCheatsWindow::wxCheatsWindow(wxWindow* const parent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SetSize(wxSize(-1, 600));
|
||||||
Center();
|
Center();
|
||||||
Show();
|
Show();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue