Merge pull request #5728 from Starsam80/remove-qt-whats-this

Qt: Don't show the Qt "What's this" button
This commit is contained in:
Leo Lam
2017-07-08 10:55:28 +02:00
committed by GitHub
5 changed files with 5 additions and 0 deletions

View File

@ -39,6 +39,7 @@
MappingWindow::MappingWindow(QWidget* parent, int port_num) : QDialog(parent), m_port(port_num)
{
setWindowTitle(tr("Port %1").arg(port_num + 1));
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
CreateDevicesLayout();
CreateProfilesLayout();