summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2021-05-30 16:41:42 -0700
committerMatt Turner <mattst88@gentoo.org>2021-05-30 18:58:02 -0700
commitc3e1e1ecd984b512a0da08e7c98f1de84a7500b7 (patch)
treeeffdb2cfdf23783829a7eb31c2734a870cb2a7d9 /gnome-extra/gnome-shell-extensions/files
parentgnome-extra/gnome-getting-started-docs: Drop old versions (diff)
downloadgentoo-c3e1e1ecd984b512a0da08e7c98f1de84a7500b7.tar.gz
gentoo-c3e1e1ecd984b512a0da08e7c98f1de84a7500b7.tar.bz2
gentoo-c3e1e1ecd984b512a0da08e7c98f1de84a7500b7.zip
gnome-extra/gnome-shell-extensions: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gnome-extra/gnome-shell-extensions/files')
-rw-r--r--gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch b/gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch
deleted file mode 100644
index 9e335b781aad..000000000000
--- a/gnome-extra/gnome-shell-extensions/files/40.0-windowsNavigator-Adjust-to-gnome-shell-change.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From e094dead91389c4a5f602e5bef2747ad5e73e8bd Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
-Date: Thu, 8 Apr 2021 16:38:40 +0200
-Subject: [PATCH] windowsNavigator: Adjust to gnome-shell change
-
-Parts of WindowPreview were moved to C for performance reasons, which
-turned a formerly private JS property into a GObject property.
-
-https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/302
-
-Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/170>
----
- extensions/windowsNavigator/extension.js | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/extensions/windowsNavigator/extension.js b/extensions/windowsNavigator/extension.js
-index 0ea9645..bb72d7b 100644
---- a/extensions/windowsNavigator/extension.js
-+++ b/extensions/windowsNavigator/extension.js
-@@ -84,17 +84,17 @@ class MyWorkspace extends Workspace.Workspace {
- });
-
- this._text.add_constraint(new Clutter.BindConstraint({
-- source: this._windowContainer,
-+ source: this.windowContainer,
- coordinate: Clutter.BindCoordinate.POSITION,
- }));
- this._text.add_constraint(new Clutter.AlignConstraint({
-- source: this._windowContainer,
-+ source: this.windowContainer,
- align_axis: Clutter.AlignAxis.X_AXIS,
- pivot_point: new Graphene.Point({ x: 0.5, y: -1 }),
- factor: this._closeButtonSide === St.Side.LEFT ? 1 : 0,
- }));
- this._text.add_constraint(new Clutter.AlignConstraint({
-- source: this._windowContainer,
-+ source: this.windowContainer,
- align_axis: Clutter.AlignAxis.Y_AXIS,
- pivot_point: new Graphene.Point({ x: -1, y: 0.5 }),
- factor: 0,
---
-2.26.3
-