From 3da985448fb07defbe4ab4b158d0e6d9fe4cc495 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 11 May 2020 18:10:14 +0100 Subject: [PATCH] Fix LV2 UI not showing up if host supports touch Fixes #1104 Signed-off-by: falkTX --- source/plugin/carla-lv2.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/plugin/carla-lv2.cpp b/source/plugin/carla-lv2.cpp index eb262f503..9377a6813 100644 --- a/source/plugin/carla-lv2.cpp +++ b/source/plugin/carla-lv2.cpp @@ -1,6 +1,6 @@ /* * Carla Native Plugins - * Copyright (C) 2013-2019 Filipe Coelho + * Copyright (C) 2013-2020 Filipe Coelho * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -573,12 +573,10 @@ public: std::strcmp(features[i]->URI, LV2_EXTERNAL_UI_DEPRECATED_URI) == 0) { fUI.host = (const LV2_External_UI_Host*)features[i]->data; - break; } if (std::strcmp(features[i]->URI, LV2_UI__touch) == 0) { fUI.touch = (const LV2UI_Touch*)features[i]->data; - break; } }