mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
locatePointer: Mark the animation as required
When the accessibility option "Reduce Animation" is turned on, the accessibility option "Locate Pointer" stops to work. This is because the animation is not marked as required. Mark it as such.
This commit is contained in:
parent
4b48f861f5
commit
762c0074f3
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ export class LocatePointer {
|
|||
return;
|
||||
|
||||
if (enabled) {
|
||||
this._ripples = new Ripples.Ripples(0.5, 0.5, 'ripple-pointer-location');
|
||||
this._ripples = new Ripples.Ripples(0.5, 0.5, 'ripple-pointer-location', true);
|
||||
this._ripples.addTo(Main.uiGroup);
|
||||
} else {
|
||||
this._ripples.destroy();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue