From d9302ad77a693263230963a3dc37afe399100de7 Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 22 Jul 2026 19:47:11 +0200 Subject: [PATCH] Reveal file in Finder instead of opening it --- Source/PluginEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index 5663002..806cd6c 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -506,7 +506,7 @@ void MonoslicerEditor::buttonClicked(juce::Button* button) else if (button == &fileInfoLabel) { if (currentLoadedFile.existsAsFile()) - currentLoadedFile.startAsProcess(); + currentLoadedFile.revealToUser(); } }