From 28943a35dafe1379bee921668442c591cfdadf68 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 14 Nov 2013 12:38:10 -0800 Subject: [PATCH] Use getWindowState instead of referencing window state directly --- src/atom.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atom.coffee b/src/atom.coffee index 3d6aa7029..300aea0c2 100644 --- a/src/atom.coffee +++ b/src/atom.coffee @@ -319,7 +319,7 @@ class Atom # Private: Returns a replicated copy of the current state. replicate: -> - @windowState.replicate() + @getWindowState().replicate() crashMainProcess: -> remote.process.crash()