effects/mousemark: Specify effect chain position
BUG: 457639
This commit is contained in:
parent
fdb40395f0
commit
14513ebcda
2 changed files with 6 additions and 0 deletions
|
@ -226,4 +226,9 @@ bool MouseMarkEffect::isActive() const
|
|||
return (!marks.isEmpty() || !drawing.isEmpty()) && !effects->isScreenLocked();
|
||||
}
|
||||
|
||||
int MouseMarkEffect::requestedEffectChainPosition() const
|
||||
{
|
||||
return 10;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
|
|
@ -28,6 +28,7 @@ public:
|
|||
void reconfigure(ReconfigureFlags) override;
|
||||
void paintScreen(int mask, const QRegion ®ion, ScreenPaintData &data) override;
|
||||
bool isActive() const override;
|
||||
int requestedEffectChainPosition() const override;
|
||||
|
||||
// for properties
|
||||
int configuredWidth() const
|
||||
|
|
Loading…
Reference in a new issue