diff --git a/src/app/RackScene.cpp b/src/app/RackScene.cpp index 7c6cf7c8..f9e9db26 100644 --- a/src/app/RackScene.cpp +++ b/src/app/RackScene.cpp @@ -122,7 +122,6 @@ void RackScene::onHoverKey(EventHoverKey &e) { Widget::onHoverKey(e); } - void RackScene::onPathDrop(EventPathDrop &e) { if (e.paths.size() >= 1) { const std::string& firstPath = e.paths.front(); @@ -131,8 +130,10 @@ void RackScene::onPathDrop(EventPathDrop &e) { e.consumed = true; } } -} + if (!e.consumed) + Scene::onPathDrop(e); +} } // namespace rack