forked from pool/gnome-shell-extensions
f7f87a1d37
- Update sle-classic patches to version 3.26.0: + Update gse-sle-classic-ext.patch + Update sle-classic-favorites-menu-at-end.patch + Update sle-classic-lock-screen-background.patch OBS-URL: https://build.opensuse.org/request/show/525997 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell-extensions?expand=0&rev=132
35 lines
1.5 KiB
Diff
35 lines
1.5 KiB
Diff
|
|
Index: gnome-shell-extensions-3.26.0/extensions/apps-menu/extension.js
|
|
===================================================================
|
|
--- gnome-shell-extensions-3.26.0.orig/extensions/apps-menu/extension.js
|
|
+++ gnome-shell-extensions-3.26.0/extensions/apps-menu/extension.js
|
|
@@ -22,6 +22,8 @@ const Pango = imports.gi.Pango;
|
|
const Gettext = imports.gettext.domain('gnome-shell-extensions');
|
|
const _ = Gettext.gettext;
|
|
|
|
+const SLEClassicExt = imports.ui.SLEClassicExt;
|
|
+
|
|
const ExtensionUtils = imports.misc.extensionUtils;
|
|
const Me = ExtensionUtils.getCurrentExtension();
|
|
const Convenience = Me.imports.convenience;
|
|
@@ -785,8 +787,6 @@ const ApplicationsButton = new Lang.Clas
|
|
let tree = new GMenu.Tree({ menu_basename: 'applications.menu' });
|
|
tree.load_sync();
|
|
let root = tree.get_root_directory();
|
|
- let categoryMenuItem = new CategoryMenuItem(this, null);
|
|
- this.categoriesBox.add_actor(categoryMenuItem.actor);
|
|
let iter = root.iter();
|
|
let nextType;
|
|
while ((nextType = iter.next()) != GMenu.TreeItemType.INVALID) {
|
|
@@ -804,6 +804,10 @@ const ApplicationsButton = new Lang.Clas
|
|
}
|
|
}
|
|
|
|
+ let categoryMenuItem = new CategoryMenuItem(this, null);
|
|
+ this.categoriesBox.insert_child_at_index(categoryMenuItem.actor,
|
|
+ SLEClassicExt.isSLEClassicMode() ? -1 : 0);
|
|
+
|
|
//Load applications
|
|
this._displayButtons(this._listApplications(null));
|
|
|