From 908ff5d3cd989023258f5e56ca2bb6893865585d Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 9 Jul 2014 14:52:59 -0700 Subject: [PATCH] :lipstick: Add space before -> --- src/atom.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atom.coffee b/src/atom.coffee index 05724c6f9..50847f72d 100644 --- a/src/atom.coffee +++ b/src/atom.coffee @@ -227,7 +227,7 @@ class Atom extends Model # Returns true if the dimensions are useable, false if they should be ignored. # Work around for https://github.com/atom/atom-shell/issues/473 - isValidDimensions: ({x, y, width, height}={})-> + isValidDimensions: ({x, y, width, height}={}) -> width > 0 and height > 0 and x + width > 0 and y + height > 0 storeDefaultWindowDimensions: ->