cleanup: Fix missing/stray spaces
Those are wrong according to our style guidelines, but the previous eslint ruleset didn't catch them. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/805
This commit is contained in:
parent
682bd7e97c
commit
9eaa0089d0
@ -472,7 +472,7 @@ var Magnifier = class Magnifier {
|
||||
}
|
||||
}
|
||||
|
||||
//// Private methods ////
|
||||
// Private methods //
|
||||
|
||||
_updateMouseSprite() {
|
||||
this._updateSpriteTexture();
|
||||
@ -1272,7 +1272,7 @@ var ZoomRegion = class ZoomRegion {
|
||||
return contrast;
|
||||
}
|
||||
|
||||
//// Private methods ////
|
||||
// Private methods //
|
||||
|
||||
_createActors() {
|
||||
// The root actor for the zoom region
|
||||
|
@ -377,8 +377,10 @@ function loadTheme() {
|
||||
let themeContext = St.ThemeContext.get_for_stage(global.stage);
|
||||
let previousTheme = themeContext.get_theme();
|
||||
|
||||
let theme = new St.Theme ({ application_stylesheet: _cssStylesheet,
|
||||
default_stylesheet: _defaultCssStylesheet });
|
||||
let theme = new St.Theme({
|
||||
application_stylesheet: _cssStylesheet,
|
||||
default_stylesheet: _defaultCssStylesheet
|
||||
});
|
||||
|
||||
if (theme.default_stylesheet == null)
|
||||
throw new Error("No valid stylesheet found for '%s'".format(sessionMode.stylesheetName));
|
||||
|
Loading…
Reference in New Issue
Block a user