diff src/audacious/ui_main.c @ 3184:564359ff9304 trunk

bound the Enter key to the play button
author Cristi Magherusan <majeru@atheme-project.org>
date Sat, 28 Jul 2007 01:28:48 +0300
parents a6299755b78a
children 1745c9063286
line wrap: on
line diff
--- a/src/audacious/ui_main.c	Sat Jul 28 01:27:59 2007 +0300
+++ b/src/audacious/ui_main.c	Sat Jul 28 01:28:48 2007 +0300
@@ -1138,6 +1138,8 @@
     case GDK_KP_Insert:
         ui_jump_to_track();
         break;
+    case GDK_Return:
+    case GDK_KP_Enter:
     case GDK_KP_5:
         mainwin_play_pushed();
         break;