mirror of https://github.com/stella-emu/stella.git
Let dialogs use all available space in LauncherDialog (fixes #236).
This commit is contained in:
parent
5cce80d908
commit
bfb79fe289
|
@ -163,8 +163,7 @@ LauncherDialog::LauncherDialog(OSystem& osystem, DialogContainer& parent,
|
|||
mySelectedItem = 0; // Highlight 'Rom Listing'
|
||||
|
||||
// Create an options dialog, similar to the in-game one
|
||||
myOptions = make_unique<OptionsDialog>(osystem, parent, this,
|
||||
int(w * 0.8), int(h * 0.8), true);
|
||||
myOptions = make_unique<OptionsDialog>(osystem, parent, this, w, h, true);
|
||||
|
||||
// Create a game list, which contains all the information about a ROM that
|
||||
// the launcher needs
|
||||
|
|
Loading…
Reference in New Issue