summaryrefslogtreecommitdiff
path: root/deskutils/gnome-shell-extension-backslide/files/patch-widgets.js
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2017-03-27 18:27:12 +0000
committerRene Ladan <rene@FreeBSD.org>2017-03-27 18:27:12 +0000
commitaaac69a482dab919b2ccfe4acd51b5e10ec89b36 (patch)
tree475362f6a72b4008ca6597003159f4223bc59e51 /deskutils/gnome-shell-extension-backslide/files/patch-widgets.js
parentmail/mutt: remove optional expired dependency on mail/mixmaster (diff)
Remove expired ports:
2017-03-27 print/musixtex: Broken for more than 6 months 2017-03-27 www/wml: Broken for more than 6 months 2017-03-27 www/offline-npm: Broken for more than 6 months 2017-03-27 x11-themes/kde-icons-cezanne: Broken for more than 6 months 2017-03-27 x11-themes/kde-icons-sky: Broken for more than 6 months 2017-03-27 deskutils/gnome-shell-extension-backslide: Broken for more than 6 months 2017-03-27 devel/openvex: Broken for more than 6 months 2017-03-27 mail/mixmaster: Broken for more than 6 months 2017-03-27 net-mgmt/nat: Broken for more than 6 months 2017-03-27 net-p2p/gnunet-gtk: Depends on expiring net-p2p/gnunet 2017-03-27 net-p2p/gnunet: Broken for more than 6 months 2017-03-27 print/abc2mtex: Depends on expiring print/musixtex
Notes
Notes: svn path=/head/; revision=437071
Diffstat (limited to 'deskutils/gnome-shell-extension-backslide/files/patch-widgets.js')
-rw-r--r--deskutils/gnome-shell-extension-backslide/files/patch-widgets.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/deskutils/gnome-shell-extension-backslide/files/patch-widgets.js b/deskutils/gnome-shell-extension-backslide/files/patch-widgets.js
deleted file mode 100644
index 691f71a58c6d..000000000000
--- a/deskutils/gnome-shell-extension-backslide/files/patch-widgets.js
+++ /dev/null
@@ -1,24 +0,0 @@
-Support gnome-shell 3.18
-https://bitbucket.org/LukasKnuth/backslide/issues/64/extension-broken-in-gnome-318-here-is-a
-
---- backslide@codeisland.org/widgets.js.orig 2015-11-18 15:28:14.531127000 +0100
-+++ backslide@codeisland.org/widgets.js 2015-11-18 15:30:59.671877000 +0100
-@@ -482,11 +482,16 @@
- _init: function(value) {
- this.parent();
-
-- this._box = new St.Table({style_class: 'slider-item'});
-+ //DOM 20151024
-+ this._box = new St.Widget({style_class: 'slider-item',
-+ layout_manager: new Clutter.TableLayout(),
-+ reactive: true});
-
- this._slider = new Slider.Slider(value);
-
-- this._box.add(this._slider.actor, {row: 0, col: 2, x_expand: true});
-+ //DOM 20151024
-+ this._box.layout_manager.pack(this._slider.actor, 2, 0);
-+
- this.actor.add(this._box, {span: -1, expand: true});
- },
-