summaryrefslogtreecommitdiffstats
path: root/src/qt5_in_gtk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt5_in_gtk.cpp')
-rw-r--r--src/qt5_in_gtk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt5_in_gtk.cpp b/src/qt5_in_gtk.cpp
index 5ce395d..fee583e 100644
--- a/src/qt5_in_gtk.cpp
+++ b/src/qt5_in_gtk.cpp
@@ -150,7 +150,7 @@ wrapper_wrap(SuilWrapper* wrapper,
{
SuilQtWrapper* const wrap = SUIL_QT_WRAPPER(wrapper->impl);
- wrap->qembed = new QWidget();
+ wrap->qembed = new QWidget(nullptr, Qt::WindowFlags());
wrap->wrapper = wrapper;
wrap->instance = instance;
@@ -158,7 +158,7 @@ wrapper_wrap(SuilWrapper* wrapper,
QVBoxLayout* layout = new QVBoxLayout();
layout->setMargin(0);
layout->setSpacing(0);
- layout->addWidget(qwidget);
+ layout->addWidget(qwidget, 0, Qt::Alignment());
wrap->qembed->setLayout(layout);