Adding "Find & Replace" to the notebook GUI.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-09-16 19:31:23 +00:00 committed by SantiagoBragagnolo
parent 4db7165b9b
commit 25a35cd65a
1 changed files with 8 additions and 1 deletions

View File

@ -787,7 +787,14 @@ GrafoscopioNotebook >> topBar [
name: nil;
description: 'Paste';
icon: #smallPaste asIcon;
action: [ self pasteNodeFromClipboard ] ] ];
action: [ self pasteNodeFromClipboard ] ].
group
addItem: [ :item |
item
name: nil;
description: 'Find & Replace';
icon: #smallFind asIcon;
action: [ self inform: 'To be implemented...' ] ] ];
addGroup: [ :group |
group
addItem: [ :item |