From 8aa05a477bfc534dcd9b55487906af86f6fc539d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 29 Dec 2011 23:32:55 +0100 Subject: [PATCH] implement isActive in resize effect (cherry picked from commit 60281f9cc3c515db1c36139842374353bca3cb3a) --- effects/resize/resize.h | 1 + 1 file changed, 1 insertion(+) diff --git a/effects/resize/resize.h b/effects/resize/resize.h index 88d29db4f2..0411d6d813 100644 --- a/effects/resize/resize.h +++ b/effects/resize/resize.h @@ -36,6 +36,7 @@ public: virtual inline bool provides(Effect::Feature ef) { return ef == Effect::Resize; } + inline bool isActive() const { return m_active; } virtual void prePaintScreen(ScreenPrePaintData& data, int time); virtual void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time); virtual void paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data);