Paste P401

Masterwork From Distant Lands
ActivePublic

Authored by davidedmundson on Jun 12 2019, 3:00 PM.
diff --git a/src/windowsystem/windoweffects.cpp b/src/windowsystem/windoweffects.cpp
index ef54f09..8116b90 100644
--- a/src/windowsystem/windoweffects.cpp
+++ b/src/windowsystem/windoweffects.cpp
@@ -159,7 +159,7 @@ void WindowEffects::slideWindow(WId id, KWindowEffects::SlideFromLocation locati
} else {
WaylandIntegration::self()->waylandSlideManager()->removeSlide(surface);
}
- surface->commit(KWayland::Client::Surface::CommitFlag::None);
+// surface->commit(KWayland::Client::Surface::CommitFlag::None);
WaylandIntegration::self()->waylandConnection()->flush();
}
@@ -227,7 +227,7 @@ void WindowEffects::enableBlurBehind(QWindow *window, bool enable, const QRegion
} else {
WaylandIntegration::self()->waylandBlurManager()->removeBlur(surface);
}
- surface->commit(KWayland::Client::Surface::CommitFlag::None);
+// surface->commit(KWayland::Client::Surface::CommitFlag::None);
WaylandIntegration::self()->waylandConnection()->flush();
}
@@ -270,7 +270,7 @@ void WindowEffects::enableBackgroundContrast(QWindow *window, bool enable, qreal
} else {
WaylandIntegration::self()->waylandContrastManager()->removeContrast(surface);
}
- surface->commit(KWayland::Client::Surface::CommitFlag::None);
+// surface->commit(KWayland::Client::Surface::CommitFlag::None);
WaylandIntegration::self()->waylandConnection()->flush();
}
davidedmundson edited the content of this paste. (Show Details)Jun 12 2019, 3:00 PM
davidedmundson changed the title of this paste from untitled to Masterwork From Distant Lands.