Skip to content
Snippets Groups Projects

GUI repairs and standardization

Merged Wuttke, Joachim requested to merge j.grpbox3 into main
4 files
+ 7
14
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -22,10 +22,8 @@
#include "GUI/View/Widget/ApplicationSettings.h"
#include "GUI/View/Widget/GroupBoxes.h"
#include "GUI/View/Widget/StyledToolbar.h"
#include <QAction>
#include <QCheckBox>
#include <QFormLayout>
#include <QGroupBox>
#include <QLineEdit>
#include <QMenu>
#include <QMessageBox>
@@ -99,7 +97,7 @@ void InstrumentView::createWidgetsForCurrentInstrument()
//... Groupbox with instrument name and description (same layout for all instrument types)
auto title = QString("Information (%1 instrument)").arg(currentInstrument->instrumentType());
auto title = QString("Summary (%1 instrument)").arg(currentInstrument->instrumentType());
auto* g = new CollapsibleGroupBox(title, m_scrollArea, currentInstrument->expandInfo);
g->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
auto* formLayout = new QFormLayout;
Loading