Added file option to import image to current layer

This commit is contained in:
NSSure
2022-10-21 03:52:55 -04:00
parent 14d5048756
commit 02806c7efa
10 changed files with 111 additions and 1 deletions

View File

@ -43,6 +43,9 @@ const TopMenuModule = (() => {
case 'Open':
Events.on('click', currSubmenuButton, FileManager.open);
break;
case 'Import':
Events.on('click', currSubmenuButton, FileManager.openImportImageWindow);
break;
case 'Export':
Events.on('click', currSubmenuButton, FileManager.openPixelExportWindow);
break;