Skip to content

Commit

Permalink
Merge branch 'master' of github.com:SublimeText/Origami
Browse files Browse the repository at this point in the history
  • Loading branch information
adzenith committed Jan 20, 2014
2 parents bfcc3c9 + d7db4dc commit fd6c343
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions origami.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,6 @@ def clone_file_to_pane(self, direction):

self.carry_file_to_pane(direction)

def create_pane_with_file(self,direction):
self.create_pane(direction)
self.carry_file_to_pane(direction)

def zoom_pane(self, fraction):
if fraction == None:
fraction = .9
Expand Down Expand Up @@ -330,7 +326,9 @@ def run(self, direction):

class CreatePaneWithFileCommand(PaneCommand):
def run(self, direction):
self.create_pane_with_file(direction)
self.create_pane(direction)
self.carry_file_to_pane(direction)


class ZoomPaneCommand(PaneCommand):
def run(self, fraction=None):
Expand Down

0 comments on commit fd6c343

Please sign in to comment.