BBVS: Move dialog to avoid bevel being drawn offscreen

Since the GUI renderer doesn't do clipping, this would cause
a potential crash with the Classic theme.
This commit is contained in:
Willem Jan Palenstijn 2016-02-26 01:01:00 +01:00
parent 94a03b6a45
commit d390a63cd2

View File

@ -102,7 +102,7 @@ void MainMenu::reflowLayout() {
_w = 2 * buttonWidth + buttonPadding;
_h = 3 * buttonHeight + 3 * buttonPadding;
_x = (screenW - _w) / 2;
_y = screenH - _h;
_y = screenH - _h - 2;
int x = 0, y = 0;