Skip to content

Commit 876ca74

Browse files
authored
Don't set menu background
1 parent 5df98fe commit 876ca74

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

source/main/main_window.cpp

+2-7
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,14 @@ MainWindow::MainWindow(QWidget *parent) :
2424

2525
setMinimumSize(300, 225);
2626
setWindowTitle(QString::fromStdString(Game::GameTitle));
27+
statusBar()->setVisible(false);
2728

2829
// DeviceCanvas is a QObject and will be deleted by parent
29-
Game::DeviceCanvas *canvas = new Game::DeviceCanvas(this, menuBar()->height(), 0);
30+
Game::DeviceCanvas *canvas = new Game::DeviceCanvas(this, 0, 0);
3031

3132
_player = new Game::Player(canvas);
3233
connect(&_pollTimer, &QTimer::timeout, this, &MainWindow::advanceUniverse);
3334

34-
// Set default background color to match canvas
35-
QPalette pal;
36-
pal.setColor(QPalette::Background, canvas->background());
37-
pal.setColor(QPalette::ButtonText, Qt::white);
38-
setPalette(pal);
39-
4035
_dialog = new AboutDialog(this);
4136
}
4237

0 commit comments

Comments
 (0)