From 6027c6cfcfa164b9edd0cc0319392e0955a02b8e Mon Sep 17 00:00:00 2001 From: Joachim Wuttke <j.wuttke@fz-juelich.de> Date: Sat, 27 Jul 2024 08:20:38 +0200 Subject: [PATCH] format --- GUI/View/Sample/LatticeTypeSelectionForm.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/GUI/View/Sample/LatticeTypeSelectionForm.cpp b/GUI/View/Sample/LatticeTypeSelectionForm.cpp index 248ece5e859..1d99b8aaa3f 100644 --- a/GUI/View/Sample/LatticeTypeSelectionForm.cpp +++ b/GUI/View/Sample/LatticeTypeSelectionForm.cpp @@ -42,12 +42,11 @@ void LatticeTypeSelectionForm::createContent() m_integrate_over_xi_check_box = new QCheckBox("Integrate over Xi", this); m_integrate_over_xi_check_box->setChecked(m_interference_item->xiIntegration()); m_grid_layout->addWidget(m_integrate_over_xi_check_box, 1, m_grid_layout->columnCount()); - connect(m_integrate_over_xi_check_box, &QCheckBox::stateChanged, - [this] { - interferenceItem()->setXiIntegration(m_integrate_over_xi_check_box->isChecked()); - onIntegrateOverXiChanged(); - emit gDoc->sampleChanged(); - }); + connect(m_integrate_over_xi_check_box, &QCheckBox::stateChanged, [this] { + interferenceItem()->setXiIntegration(m_integrate_over_xi_check_box->isChecked()); + onIntegrateOverXiChanged(); + emit gDoc->sampleChanged(); + }); const int colOfXiLabel = m_grid_layout->columnCount(); GUI::Util::Layer::addMultiPropertyToGrid(m_grid_layout, m_grid_layout->columnCount(), -- GitLab