diff --git a/CMakeLists.txt b/CMakeLists.txt index e184e92..c2632eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -139,6 +139,7 @@ target_compile_definitions(MStarPlayer PRIVATE JUCE_WEB_BROWSER=0 JUCE_USE_CURL=0 JUCE_USE_CDREADER=1 + JUCE_MODAL_LOOPS_PERMITTED=1 JUCE_APPLICATION_NAME_STRING="$" JUCE_APPLICATION_VERSION_STRING="$" ) diff --git a/Changelog.md b/Changelog.md index 371519f..1291ed5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +* The dialogs to edit or remove files of a track work again. + ## [1.3.0] - 2026-02-07 ### Changed diff --git a/Source/TrackUi.cpp b/Source/TrackUi.cpp index 0b10e72..5378940 100644 --- a/Source/TrackUi.cpp +++ b/Source/TrackUi.cpp @@ -181,7 +181,7 @@ void TrackUi::buttonClicked(juce::Button* button) juce::File file(m_track.getTrackConfig().file); m_track.unloadFile(); - juce::AlertWindow::showMessageBoxAsync(juce::AlertWindow::NoIcon, + juce::AlertWindow::showMessageBox(juce::AlertWindow::NoIcon, TRANS("Audio editor launched"), TRANS("Modify the file in the audio editor. Click on 'ok' after the file was saved to load it " "again."));