diff --git a/GUI/View/Instrument/DetectorEditor.cpp b/GUI/View/Instrument/DetectorEditor.cpp
index 7c5ada019abd581a43469de01bcd1305a99c1a73..6f944423d98b90641b68a56a60e95fda17110c09 100644
--- a/GUI/View/Instrument/DetectorEditor.cpp
+++ b/GUI/View/Instrument/DetectorEditor.cpp
@@ -26,8 +26,7 @@
 #include "GUI/Support/Style/ApplicationSettings.h"
 #include <QLabel>
 
-class GroupBox : public QGroupBox
-{
+class GroupBox : public QGroupBox {
 public:
     GroupBox(const QString& title, QLayout* content_layout, QWidget* parent);
 };
@@ -50,7 +49,7 @@ GroupBox::GroupBox(const QString& title, QLayout* content_layout, QWidget* paren
     mainLayout->setMenuBar(label);
     mainLayout->addWidget(contentArea);
 
-    setTitle(""); // title has been read above
+    setTitle("");          // title has been read above
     setLayout(mainLayout); // overwrites layout that has been read above
 }