diff --git a/js/ui/screenshot.js b/js/ui/screenshot.js index 50c5f9d07..3a095b1b8 100644 --- a/js/ui/screenshot.js +++ b/js/ui/screenshot.js @@ -283,8 +283,8 @@ const SelectArea = new Lang.Class({ _getGeometry: function() { return { x: Math.min(this._startX, this._lastX), y: Math.min(this._startY, this._lastY), - width: Math.abs(this._startX - this._lastX), - height: Math.abs(this._startY - this._lastY) }; + width: Math.abs(this._startX - this._lastX) + 1, + height: Math.abs(this._startY - this._lastY) + 1 }; }, _onMotionEvent: function(actor, event) {