[gnome-shell/gbsneto/custom-icon-positions: 64/72] appDisplay: Save pages after moving items
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/custom-icon-positions: 64/72] appDisplay: Save pages after moving items
- Date: Thu, 4 Jun 2020 19:00:55 +0000 (UTC)
commit d086235e3a5d58590b318dfa172a7ae1b1fbb05f
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Tue May 26 01:41:17 2020 -0300
appDisplay: Save pages after moving items
https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1284
js/ui/appDisplay.js | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index afc27370eb..9ea4c9dd0f 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -744,6 +744,26 @@ class AppDisplay extends BaseAppView {
super._redisplay();
}
+ _collectPages() {
+ const pages = [];
+
+ for (let i = 0; i < this._grid.nPages; i++) {
+ const pageItems =
+ this._grid.getItemsAtPage(i).filter(c => c.visible);
+ const pageData = {};
+
+ for (let itemIndex in pageItems) {
+ const item = pageItems[itemIndex];
+ pageData[item.id] = {
+ position: GLib.Variant.new_int32(itemIndex),
+ };
+ }
+ pages.push(pageData);
+ }
+
+ return pages;
+ }
+
_itemNameChanged(item) {
// If an item's name changed, we can pluck it out of where it's
// supposed to be and reinsert it where it's sorted.
@@ -832,6 +852,11 @@ class AppDisplay extends BaseAppView {
return appIcons;
}
+ moveItem(item, page, position) {
+ super.moveItem(item, page, position);
+ this._pageManager.pages = this._collectPages();
+ }
+
// Overridden from BaseAppView
animate(animationDirection, onComplete) {
this._scrollView.reactive = false;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]