1
0
gnome-shell-extensions/sle-classic-favorites-menu-at-end.patch
Bjørn Lie f7f87a1d37 Accepting request 525997 from home:xiaoguang_wang:branches:GNOME:Factory
- 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
2017-09-14 11:46:04 +00:00

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));