Make Image tab in setting the second tab

This commit is contained in:
Gary Talent 2023-07-24 21:50:25 -05:00
parent b119268396
commit ed01f44b91

View File

@ -37,8 +37,8 @@ SettingsDialog::SettingsDialog(QWidget *parent): QDialog(parent) {
auto const lyt = new QVBoxLayout(this); auto const lyt = new QVBoxLayout(this);
auto const tabs = new QTabWidget(this); auto const tabs = new QTabWidget(this);
lyt->addWidget(tabs); lyt->addWidget(tabs);
tabs->addTab(setupImageConfig(tabs), tr("&Image"));
tabs->addTab(setupViewConfig(tabs), tr("&Views")); tabs->addTab(setupViewConfig(tabs), tr("&Views"));
tabs->addTab(setupImageConfig(tabs), tr("&Image"));
tabs->addTab(setupNetworkInputs(tabs), tr("&Network")); tabs->addTab(setupNetworkInputs(tabs), tr("&Network"));
lyt->addWidget(setupButtons(this)); lyt->addWidget(setupButtons(this));
setFixedSize(440, 440); setFixedSize(440, 440);