summaryrefslogtreecommitdiff
path: root/gtk2_ardour/au_pluginui.mm
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-02-21 03:16:04 +0100
committerRobin Gareus <robin@gareus.org>2015-02-21 03:16:04 +0100
commita0eeb808850f9b39bd1b5526d70634a75a0a9701 (patch)
treeb37b1991302cc69bda8487e385a4aa3418009391 /gtk2_ardour/au_pluginui.mm
parent642e4950b915a2317bd51e3ec7c270909229c353 (diff)
fix embedded plugin UI keyboard handling
When the GUI is opened the first time all is fine, focus is on the embedded widget. However once a user presses one of the preset buttons (Add, Save,...) there is no possibility to return focus to the embedded widget. Ardour always 'sees' it as focus=GtkButton and passes the event to the editor.
Diffstat (limited to 'gtk2_ardour/au_pluginui.mm')
-rw-r--r--gtk2_ardour/au_pluginui.mm7
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk2_ardour/au_pluginui.mm b/gtk2_ardour/au_pluginui.mm
index 9040d28a6f..76b94781d5 100644
--- a/gtk2_ardour/au_pluginui.mm
+++ b/gtk2_ardour/au_pluginui.mm
@@ -678,6 +678,13 @@ AUPluginUI::parent_cocoa_window ()
}
void
+AUPluginUI::grab_focus()
+{
+ if (au_view) {
+ [au_view becomeFirstResponder];
+ }
+}
+void
AUPluginUI::forward_key_event (GdkEventKey* ev)
{
NSEvent* nsevent = gdk_quartz_event_get_nsevent ((GdkEvent*)ev);