diff --git a/src/atom/root-view.coffee b/src/atom/root-view.coffee index 5ed12bb50..46f0d8a68 100644 --- a/src/atom/root-view.coffee +++ b/src/atom/root-view.coffee @@ -38,9 +38,6 @@ class RootView extends View open: (path) -> @lastActiveEditor().setBuffer(@project.open(path)) - addPane: (view) -> - @append(view) - editorFocused: (editor) -> if @panes.containsElement(editor) _.remove(@editors, editor) @@ -63,7 +60,6 @@ class RootView extends View .appendTo(@panes) .focus() - adjustSplitPanes: (element = @panes.children(':first'))-> if element.hasClass('row') totalUnits = @horizontalGridUnits(element) @@ -126,4 +122,4 @@ class RootView extends View @fileFinder = new FileFinder urls: relativePaths selected: (relativePath) => @open(relativePath) - @addPane @fileFinder + @append @fileFinder