effects: Drop PAINT_DISABLED_BY_TAB_GROUP

This commit is contained in:
Vlad Zahorodnii 2023-02-03 22:12:26 +02:00
parent 65f4313e04
commit 909e10dace
2 changed files with 2 additions and 4 deletions

View file

@ -2347,10 +2347,8 @@ public:
PAINT_DISABLED_BY_DESKTOP = 1 << 2,
/** Window will not be painted because it is minimized */
PAINT_DISABLED_BY_MINIMIZE = 1 << 3,
/** Deprecated, tab groups have been removed: Window will not be painted because it is not the active window in a client group */
PAINT_DISABLED_BY_TAB_GROUP = 1 << 4,
/** Window will not be painted because it's not on the current activity */
PAINT_DISABLED_BY_ACTIVITY = 1 << 5
PAINT_DISABLED_BY_ACTIVITY = 1 << 4
};
explicit EffectWindow();

View file

@ -39,7 +39,7 @@ public:
PAINT_DISABLED_BY_DELETE = 1 << 1,
PAINT_DISABLED_BY_DESKTOP = 1 << 2,
PAINT_DISABLED_BY_MINIMIZE = 1 << 3,
PAINT_DISABLED_BY_ACTIVITY = 1 << 5
PAINT_DISABLED_BY_ACTIVITY = 1 << 4
};
~WindowItem() override;