From 6c6e46c87941fd98ee7c0f77a95fd7024c30ac64 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Thu, 18 Dec 2014 16:39:46 +0200 Subject: [PATCH] [Summary] Gives to WavesDialog the ability to response on Enter from numeric keyboard (little second enter). Igor's request. [Reviewed] YPozdniakov --- gtk2_ardour/waves_dialog.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/waves_dialog.cc b/gtk2_ardour/waves_dialog.cc index e9f331bcd8..d120bf7393 100644 --- a/gtk2_ardour/waves_dialog.cc +++ b/gtk2_ardour/waves_dialog.cc @@ -120,6 +120,7 @@ WavesDialog::on_key_press_event (GdkEventKey* ev) switch (ev->keyval) { case GDK_Return: + case GDK_KP_Enter: hide (); response (WavesDialog::RESPONSE_DEFAULT); return true;