summaryrefslogtreecommitdiffstats
path: root/src/window-lib/windowitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window-lib/windowitem.cpp')
-rw-r--r--src/window-lib/windowitem.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/window-lib/windowitem.cpp b/src/window-lib/windowitem.cpp
index c4ec5ff4..ad456ea0 100644
--- a/src/window-lib/windowitem.cpp
+++ b/src/window-lib/windowitem.cpp
@@ -226,7 +226,7 @@ void WindowItem::createImpl(bool inProcess)
#endif // AM_MULTI_PROCESS
}
-void WindowItem::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry)
+void WindowItem::geometryChange(const QRectF &newGeometry, const QRectF &oldGeometry)
{
m_contentItem->setWidth(newGeometry.width());
m_contentItem->setHeight(newGeometry.height());
@@ -234,7 +234,7 @@ void WindowItem::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeo
if (m_impl && newGeometry.isValid())
m_impl->updateSize(newGeometry.size());
- QQuickItem::geometryChanged(newGeometry, oldGeometry);
+ QQuickItem::geometryChange(newGeometry, oldGeometry);
}
bool WindowItem::primary() const
@@ -418,8 +418,6 @@ void WindowItem::WaylandImpl::createWaylandItem()
{
m_waylandItem = new QWaylandQuickItem(q);
- m_waylandItem->setSizeFollowsSurface(false);
-
connect(m_waylandItem, &QWaylandQuickItem::surfaceDestroyed, q, [this]() {
// keep the buffer there to allow us to animate the window destruction
m_waylandItem->setBufferLocked(true);