| 2818 | } |
| 2819 | |
| 2820 | void ModularSynth::SaveLayoutAsPopup() |
| 2821 | { |
| 2822 | FileChooser chooser("Save current layout as...", File(ofToDataPath("layouts/newlayout.json")), "*.json", true, false, GetFileChooserParent()); |
| 2823 | if (chooser.browseForFileToSave(true)) |
| 2824 | SaveLayout(chooser.getResult().getFullPathName().toStdString()); |
| 2825 | } |
| 2826 | |
| 2827 | void ModularSynth::SaveCurrentState() |
| 2828 | { |
no test coverage detected