[gnome-shell/benzea/systemd-user-units-with-extension-warning: 5/8] extensionPrefs: Delete disabled warning marker
- From: Benjamin Berg <bberg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/benzea/systemd-user-units-with-extension-warning: 5/8] extensionPrefs: Delete disabled warning marker
- Date: Fri, 30 Aug 2019 14:08:00 +0000 (UTC)
commit 09bb454287604c09c743ee2d17a51e503c715900
Author: Benjamin Berg <bberg redhat com>
Date: Sat Apr 20 00:17:25 2019 +0200
extensionPrefs: Delete disabled warning marker
It isn't possible to easily delete the marker from an XDG autostart
file, so make it on startup to simplify that. This is in preparation
for the next commit which adds the appropriate autostart file.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/507
js/extensionPrefs/main.js | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
---
diff --git a/js/extensionPrefs/main.js b/js/extensionPrefs/main.js
index 2f12de1443..d6f075d4ba 100644
--- a/js/extensionPrefs/main.js
+++ b/js/extensionPrefs/main.js
@@ -10,7 +10,7 @@ const _ = Gettext.gettext;
const Config = imports.misc.config;
const ExtensionUtils = imports.misc.extensionUtils;
-const { loadInterfaceXML } = imports.misc.fileUtils;
+const { loadInterfaceXML, deleteGFile } = imports.misc.fileUtils;
const { ExtensionState } = ExtensionUtils;
@@ -366,6 +366,12 @@ var Application = GObject.registerClass({
this.quit();
this.disabledInfobar.set_revealed(true);
+
+ let file = GLib.build_filenamev ([GLib.get_user_config_dir(),
'gnome-shell-extensions-disabled-warning']);
+ let gfile = Gio.File.new_for_path(file);
+ if (gfile.query_exists(null))
+ deleteGFile(gfile);
+
return 0;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]