Improving documentation installation.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2016-10-18 17:10:40 +00:00
parent ca68729708
commit 6b87a201f0
2 changed files with 6 additions and 5 deletions

View File

@ -351,15 +351,15 @@ GrafoscopioGUI class >> messageNoRecentDocuments [
"Shows that a feature is not implemeted and point to further documentation on the web"
UIManager default abort:
'No hay documentos recientes.',
'Recent documents list is emtpy.',
(String with: Character cr),
'Abra un documento usando el menú:',
'To fill it, open a document using the top bar menu option:',
(String with: Character cr),
(String with: Character cr),
'"Lanzar > Documento interactivo desde archivo"',
'"Launch > Notebook from file"',
(String with: Character cr),
(String with: Character cr)
title: 'No hay documentos recientes'.
title: 'No recent documents'.
]
{ #category : #'graphical interface' }

View File

@ -379,7 +379,8 @@ GrafoscopioNotebook >> openFromFileSelector [
^ self ].
self workingFile: fileStream name asFileReference.
nb := self class new.
nb openFromFile: self workingFile.
nb openFromFile: self workingFile.
GrafoscopioGUI updateRecentNotebooksWith: workingFile
]
{ #category : #persistence }