dbusServices/extensions: Include dir and path in metadata
As we did for extensions in the previous commit, pass the path and dir properties alongside other metadata to extensions preferences. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2838>
This commit is contained in:
parent
1c98a95974
commit
6a34b2636d
@ -25,12 +25,12 @@ export const ExtensionPrefsDialog = GObject.registerClass({
|
||||
}
|
||||
|
||||
async _loadPrefs() {
|
||||
const {dir, metadata} = this._extension;
|
||||
const {dir, path, metadata} = this._extension;
|
||||
|
||||
const prefsJs = dir.get_child('prefs.js');
|
||||
const prefsModule = await import(prefsJs.get_uri());
|
||||
|
||||
const prefsObj = new prefsModule.default(metadata);
|
||||
const prefsObj = new prefsModule.default({...metadata, dir, path});
|
||||
this._extension.stateObj = prefsObj;
|
||||
|
||||
prefsObj.fillPreferencesWindow(this);
|
||||
|
Loading…
Reference in New Issue
Block a user