locatePointer: Capitalize class name
... according to our coding style. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/606
This commit is contained in:
parent
42dabef8c7
commit
69725e5d41
@ -7,7 +7,7 @@ const Main = imports.ui.main;
|
|||||||
const LOCATE_POINTER_KEY = "locate-pointer";
|
const LOCATE_POINTER_KEY = "locate-pointer";
|
||||||
const LOCATE_POINTER_SCHEMA = "org.gnome.desktop.interface"
|
const LOCATE_POINTER_SCHEMA = "org.gnome.desktop.interface"
|
||||||
|
|
||||||
var locatePointer = class {
|
var LocatePointer = class {
|
||||||
constructor() {
|
constructor() {
|
||||||
this._settings = new Gio.Settings({schema_id: LOCATE_POINTER_SCHEMA});
|
this._settings = new Gio.Settings({schema_id: LOCATE_POINTER_SCHEMA});
|
||||||
this._ripples = new Ripples.Ripples(0.5, 0.5, 'ripple-pointer-location');
|
this._ripples = new Ripples.Ripples(0.5, 0.5, 'ripple-pointer-location');
|
||||||
|
@ -172,7 +172,7 @@ function _initializeUI() {
|
|||||||
kbdA11yDialog = new KbdA11yDialog.KbdA11yDialog();
|
kbdA11yDialog = new KbdA11yDialog.KbdA11yDialog();
|
||||||
wm = new WindowManager.WindowManager();
|
wm = new WindowManager.WindowManager();
|
||||||
magnifier = new Magnifier.Magnifier();
|
magnifier = new Magnifier.Magnifier();
|
||||||
locatePointer = new LocatePointer.locatePointer();
|
locatePointer = new LocatePointer.LocatePointer();
|
||||||
|
|
||||||
if (LoginManager.canLock())
|
if (LoginManager.canLock())
|
||||||
screenShield = new ScreenShield.ScreenShield();
|
screenShield = new ScreenShield.ScreenShield();
|
||||||
|
Loading…
Reference in New Issue
Block a user