Explicitly show the menubar after mainwindow initialisation.

At least on Ubuntu with xfce instead of Unity this appears to be necessary
to get a menu bar for the application.

Fixes #833

Signed-off-by: Sander Kleijwegt <sander@myowndomain.nl>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Sander Kleijwegt 2015-08-25 10:56:07 +02:00 committed by Dirk Hohndel
parent 13a190464d
commit 57e15bf789

View file

@ -222,6 +222,9 @@ MainWindow::MainWindow() : QMainWindow(),
#ifndef NO_PRINTING
find_all_templates();
#endif
ui.menubar->show();
}
MainWindow::~MainWindow()