commit 550fab3866436c9daa0992bf94bdd7e411289232
parent 22d74866e51c61659db865b1d156675780cc32b1
Author: falkTX <falktx@falktx.com>
Date: Sat, 3 Jul 2021 22:40:21 +0100
Consistency
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/Demo.cpp b/tests/Demo.cpp
@@ -409,16 +409,16 @@ public:
const ScopedGraphicsContext sgc(*this);
wColor = new ExampleColorSubWidget(this);
- wColor->setAbsoluteX(kSidebarWidth);
wColor->hide();
+ wColor->setAbsoluteX(kSidebarWidth);
wImages = new ExampleImagesSubWidget(this);
- wImages->setAbsoluteX(kSidebarWidth);
- wImages->hide();
+ wImages->hide()
+ wImages->setAbsoluteX(kSidebarWidth);;
wRects = new ExampleRectanglesSubWidget(this);
- wRects->setAbsoluteX(kSidebarWidth);
wRects->hide();
+ wRects->setAbsoluteX(kSidebarWidth);
wShapes = new ExampleShapesSubWidget(this);
wShapes->hide();