effects/overview: Specify effect chain position
The present windows effect specifies a chain position of 70. Do the same in the overview effect.
This commit is contained in:
parent
bd6d04b417
commit
6c62f12bc1
2 changed files with 6 additions and 0 deletions
|
@ -202,6 +202,11 @@ bool OverviewEffect::isActive() const
|
||||||
return !m_screenViews.isEmpty() && !effects->isScreenLocked();
|
return !m_screenViews.isEmpty() && !effects->isScreenLocked();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int OverviewEffect::requestedEffectChainPosition() const
|
||||||
|
{
|
||||||
|
return 70;
|
||||||
|
}
|
||||||
|
|
||||||
bool OverviewEffect::borderActivated(ElectricBorder border)
|
bool OverviewEffect::borderActivated(ElectricBorder border)
|
||||||
{
|
{
|
||||||
if (m_borderActivate.contains(border)) {
|
if (m_borderActivate.contains(border)) {
|
||||||
|
|
|
@ -54,6 +54,7 @@ public:
|
||||||
void paintScreen(int mask, const QRegion ®ion, ScreenPaintData &data) override;
|
void paintScreen(int mask, const QRegion ®ion, ScreenPaintData &data) override;
|
||||||
void postPaintScreen() override;
|
void postPaintScreen() override;
|
||||||
bool isActive() const override;
|
bool isActive() const override;
|
||||||
|
int requestedEffectChainPosition() const override;
|
||||||
bool borderActivated(ElectricBorder border) override;
|
bool borderActivated(ElectricBorder border) override;
|
||||||
void reconfigure(ReconfigureFlags flags) override;
|
void reconfigure(ReconfigureFlags flags) override;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue