mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
appDisplay: Trivial const-correctness fix
https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1447
This commit is contained in:
parent
1709592811
commit
75a8697671
1 changed files with 1 additions and 1 deletions
|
|
@ -1820,7 +1820,7 @@ class FolderView extends BaseAppView {
|
|||
if (folderApps.length == 0) {
|
||||
// Resetting all keys deletes the relocatable schema
|
||||
let keys = this._folder.settings_schema.list_keys();
|
||||
for (let key of keys)
|
||||
for (const key of keys)
|
||||
this._folder.reset(key);
|
||||
|
||||
let settings = new Gio.Settings({ schema_id: 'org.gnome.desktop.app-folders' });
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue