From f6ac33251c1a4bef0d7a44afddd0fa3bd194dc69 Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Sat, 23 Feb 2013 09:21:18 +0000 Subject: [PATCH] Fix ui:touch support --- pui/lv2pui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pui/lv2pui.cpp b/pui/lv2pui.cpp index 75b8d56..e29a708 100644 --- a/pui/lv2pui.cpp +++ b/pui/lv2pui.cpp @@ -86,7 +86,7 @@ LV2PUi::~LV2PUi() void LV2PUi::WidgetGrabbed(const Widget *widget, bool grabbed) { if (this->touch) { - this->touch->touch(this, widget->port, grabbed); + this->touch->touch(this->touch->handle, widget->port, grabbed); } }