aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scxmleditor/common/stateview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/scxmleditor/common/stateview.cpp')
-rw-r--r--src/plugins/scxmleditor/common/stateview.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/plugins/scxmleditor/common/stateview.cpp b/src/plugins/scxmleditor/common/stateview.cpp
index 1ee99034417..517f53bd3ec 100644
--- a/src/plugins/scxmleditor/common/stateview.cpp
+++ b/src/plugins/scxmleditor/common/stateview.cpp
@@ -31,15 +31,19 @@ StateView::StateView(StateItem *state, QWidget *parent)
m_graphicsView = new GraphicsView;
- using namespace Utils::Layouting;
+ using namespace Layouting;
Row {
PushButton{ text("Back"), onClicked([this] { closeView(); }, this) },
stateNameLabel,
- }.attachTo(titleBar, WithoutMargins);
+ noMargin
+ }.attachTo(titleBar);
Column {
- titleBar, m_graphicsView
- }.setSpacing(0).attachTo(this, WithoutMargins);
+ spacing(0),
+ titleBar,
+ m_graphicsView,
+ noMargin,
+ }.attachTo(this);
initScene();
}