From 683ce67f5a50388e39d9b4164afae6bbdd9e94a5 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Mon, 30 Mar 2015 12:42:36 +0000 Subject: [PATCH] Making 'open' to use 'openDefault' (should be renamed?) --- repository/Grafoscopio/GrafoscopioBrowser.class.st | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/repository/Grafoscopio/GrafoscopioBrowser.class.st b/repository/Grafoscopio/GrafoscopioBrowser.class.st index 94413c0..05031c8 100644 --- a/repository/Grafoscopio/GrafoscopioBrowser.class.st +++ b/repository/Grafoscopio/GrafoscopioBrowser.class.st @@ -816,11 +816,9 @@ GrafoscopioBrowser >> open [ "Opens a new browser with a default tree and assigns a default draft file for storing it. This is changed when the file is saved with the 'Save as' menu option" - "self configureSettings." - mainTree := GrafoscopioNode new. - mainTree becomeDefaultTree. - workingFile := draftsLocation / 'draft.ston'. - self openFromFile: workingFile. + "Opens a new browser with a default tree" + GrafoscopioBrowser configureSettings. + self openDefault. ]