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();
|
||||
}
|
||||
|
||||
int OverviewEffect::requestedEffectChainPosition() const
|
||||
{
|
||||
return 70;
|
||||
}
|
||||
|
||||
bool OverviewEffect::borderActivated(ElectricBorder border)
|
||||
{
|
||||
if (m_borderActivate.contains(border)) {
|
||||
|
|
|
@ -54,6 +54,7 @@ public:
|
|||
void paintScreen(int mask, const QRegion ®ion, ScreenPaintData &data) override;
|
||||
void postPaintScreen() override;
|
||||
bool isActive() const override;
|
||||
int requestedEffectChainPosition() const override;
|
||||
bool borderActivated(ElectricBorder border) override;
|
||||
void reconfigure(ReconfigureFlags flags) override;
|
||||
|
||||
|
|
Loading…
Reference in a new issue