From 90b9372fe37291d9bb6c998f09e20a809c861159 Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 14 Sep 2016 08:14:34 +0200 Subject: [PATCH] Changed: Disable Settings and Uninstall menus (only there for debugging purposes), see #279 --- code/ryzom/tools/client/ryzom_installer/src/mainwindow.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/ryzom/tools/client/ryzom_installer/src/mainwindow.cpp b/code/ryzom/tools/client/ryzom_installer/src/mainwindow.cpp index a36ed9b59..0f196a787 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/mainwindow.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/mainwindow.cpp @@ -41,6 +41,11 @@ CMainWindow::CMainWindow():QMainWindow() connect(m_downloader, SIGNAL(htmlPageContent(QString)), SLOT(onHtmlPageContent(QString))); connect(actionProfiles, SIGNAL(triggered()), SLOT(onProfiles())); + + // remove debug options + actionSettings->setVisible(false); + actionUninstall->setVisible(false); + connect(actionSettings, SIGNAL(triggered()), SLOT(onSettings())); connect(actionUninstall, SIGNAL(triggered()), SLOT(onUninstall())); connect(actionQuit, SIGNAL(triggered()), SLOT(onQuit()));