--- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -47,8 +47,8 @@ MainWindow::MainWindow(QWidget *parent) : // Main window properties this->setWindowIcon(QIcon(":/icons/icon.svg")); this->setWindowTitle(qApp->applicationDisplayName()); - this->restoreGeometry( - settings->value("main_window_geometry").toByteArray()); + this->setMinimumSize (1080, 636); + this->resize (1080, 636); // Load custom multipage profiles settings->beginGroup("multipage_profiles"); --- a/src/operations/merge.cpp +++ b/src/operations/merge.cpp @@ -67,7 +67,9 @@ Merge::Merge(QWidget *parent) : m_files_list_view->viewport()->installEventFilter(this); // Add edit menu actions +#ifdef NOTDEF m_edit_menu->addAction(tr("Edit"), this, SLOT(edit_menu_activated())); +#endif m_edit_menu->addAction(tr("View"), this, SLOT(view_menu_activated())); // Create toolbar and add actions