Export button shows lateral panel with exported file.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-09-10 13:48:30 -05:00
parent 2e5e8eb2b2
commit 01550c5cf9

View File

@ -9,6 +9,7 @@ LePageHeaderBuilder >> addExportPageButton [
aptitude: BrGlamorousButtonWithIconAptitude;
label: 'Export Page';
icon: BrGlamorousVectorIcons down;
action: [ :aButton | self page asMarkdeepFile ].
action: [ :aButton |
aButton phlow spawnObject: self page asMarkdeepFile ].
self toolbarElement addItem: newButton.
]