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. ]