Skip to content

Commit

Permalink
Stopped applets from being draggable (until it's fixed)
Browse files Browse the repository at this point in the history
  • Loading branch information
clefebvre committed Feb 13, 2012
1 parent 0c2715c commit e582f61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/ui/applet.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ Applet.prototype = {
this._panelLocation = null; // Backlink to the panel location our applet is in, set by Cinnamon. this._panelLocation = null; // Backlink to the panel location our applet is in, set by Cinnamon.
this._uuid = null; // Defined in gsettings, set by Cinnamon. this._uuid = null; // Defined in gsettings, set by Cinnamon.
this._dragging = false; this._dragging = false;
this._draggable = DND.makeDraggable(this.actor); //this._draggable = DND.makeDraggable(this.actor);
this._draggable.connect('drag-begin', Lang.bind(this, this._onDragBegin)); //this._draggable.connect('drag-begin', Lang.bind(this, this._onDragBegin));
this._draggable.connect('drag-cancelled', Lang.bind(this, this._onDragCancelled)); //this._draggable.connect('drag-cancelled', Lang.bind(this, this._onDragCancelled));
this._draggable.connect('drag-end', Lang.bind(this, this._onDragEnd)); //this._draggable.connect('drag-end', Lang.bind(this, this._onDragEnd));
}, },


_onDragBegin: function() { _onDragBegin: function() {
Expand Down

0 comments on commit e582f61

Please sign in to comment.