allView: Rename variable
The variable that holds the list of application icons is called 'newApps', but that technically was never true, since we only create new app icons when necessary. Rename it to 'appIcons'. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/841
This commit is contained in:
parent
910037f014
commit
cae69b3a88
@ -453,7 +453,7 @@ var AllView = GObject.registerClass({
|
||||
}
|
||||
|
||||
_loadApps() {
|
||||
let newApps = [];
|
||||
let appIcons = [];
|
||||
this._appInfoList = Shell.AppSystem.get_default().get_installed().filter(appInfo => {
|
||||
try {
|
||||
appInfo.get_id(); // catch invalid file encodings
|
||||
@ -478,7 +478,7 @@ var AllView = GObject.registerClass({
|
||||
icon.connect('name-changed', this._itemNameChanged.bind(this));
|
||||
icon.connect('apps-changed', this._redisplay.bind(this));
|
||||
}
|
||||
newApps.push(icon);
|
||||
appIcons.push(icon);
|
||||
this.folderIcons.push(icon);
|
||||
});
|
||||
|
||||
@ -500,10 +500,10 @@ var AllView = GObject.registerClass({
|
||||
});
|
||||
}
|
||||
|
||||
newApps.push(icon);
|
||||
appIcons.push(icon);
|
||||
});
|
||||
|
||||
return newApps;
|
||||
return appIcons;
|
||||
}
|
||||
|
||||
// Overridden from BaseAppView
|
||||
|
Loading…
Reference in New Issue
Block a user