[Goodies-commits] r1823 - in verve-plugin/trunk: . panel-plugin
Jannis Pohlmann
jannis at xfce.org
Tue Aug 1 16:36:24 CEST 2006
Author: jannis
Date: 2006-08-01 14:36:23 +0000 (Tue, 01 Aug 2006)
New Revision: 1823
Modified:
verve-plugin/trunk/ChangeLog
verve-plugin/trunk/panel-plugin/verve-plugin.c
Log:
* panel-plugin/verve-plugin.c: Executes commands when GDK_KP_Enter
is pressed (in addition to GDK_Return). Fixes bug #2094.
Modified: verve-plugin/trunk/ChangeLog
===================================================================
--- verve-plugin/trunk/ChangeLog 2006-08-01 13:49:31 UTC (rev 1822)
+++ verve-plugin/trunk/ChangeLog 2006-08-01 14:36:23 UTC (rev 1823)
@@ -1,5 +1,10 @@
2006-08-01 Jannis Pohlmann <jannis at xfce.org>
+ * panel-plugin/verve-plugin.c: Executes commands when GDK_KP_Enter
+ is pressed (in addition to GDK_Return). Fixes bug #2094.
+
+2006-08-01 Jannis Pohlmann <jannis at xfce.org>
+
* scripts/Makefile.am, scripts/verve-focus, scripts/verve-focus.c:
Added a C program to replace the old Python verve-focus script.
It's a lot faster than the old one and it calls
Modified: verve-plugin/trunk/panel-plugin/verve-plugin.c
===================================================================
--- verve-plugin/trunk/panel-plugin/verve-plugin.c 2006-08-01 13:49:31 UTC (rev 1822)
+++ verve-plugin/trunk/panel-plugin/verve-plugin.c 2006-08-01 14:36:23 UTC (rev 1823)
@@ -362,6 +362,7 @@
/* Execute command entered by the user */
case GDK_Return:
+ case GDK_KP_Enter:
/* Retrieve a copy of the entry text */
command = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
More information about the Goodies-commits
mailing list