[Pkg-xfce-commits] r8022 - in /goodies/trunk/lightdm-gtk-greeter/debian: changelog patches/05_add-enter-shortcut-switch-login-password-fields.patch patches/series

Yves-Alexis Perez corsac at alioth.debian.org
Sat Oct 26 17:26:20 UTC 2013


Author: corsac
Date: Sat Oct 26 17:26:20 2013
New Revision: 8022

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8022
Log:
* debian/patches:
  - 05_add-enter-shortcut-switch-login-password-fields added, support Enter
    key to move from login to password field.                 closes: #727718

Added:
    goodies/trunk/lightdm-gtk-greeter/debian/patches/05_add-enter-shortcut-switch-login-password-fields.patch
Modified:
    goodies/trunk/lightdm-gtk-greeter/debian/changelog
    goodies/trunk/lightdm-gtk-greeter/debian/patches/series

Modified: goodies/trunk/lightdm-gtk-greeter/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm-gtk-greeter/debian/changelog?rev=8022&op=diff
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/changelog	(original)
+++ goodies/trunk/lightdm-gtk-greeter/debian/changelog	Sat Oct 26 17:26:20 2013
@@ -1,3 +1,11 @@
+lightdm-gtk-greeter (1.6.1-3) UNRELEASED; urgency=low
+
+  * debian/patches:
+    - 05_add-enter-shortcut-switch-login-password-fields added, support Enter
+      key to move from login to password field.                 closes: #727718
+
+ -- Yves-Alexis Perez <corsac at debian.org>  Fri, 25 Oct 2013 21:39:48 +0200
+
 lightdm-gtk-greeter (1.6.1-2) unstable; urgency=low
 
   * debian/patches:

Added: goodies/trunk/lightdm-gtk-greeter/debian/patches/05_add-enter-shortcut-switch-login-password-fields.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm-gtk-greeter/debian/patches/05_add-enter-shortcut-switch-login-password-fields.patch?rev=8022&op=file
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/patches/05_add-enter-shortcut-switch-login-password-fields.patch	(added)
+++ goodies/trunk/lightdm-gtk-greeter/debian/patches/05_add-enter-shortcut-switch-login-password-fields.patch	Sat Oct 26 17:26:20 2013
@@ -0,0 +1,20 @@
+--- a/src/lightdm-gtk-greeter.c
++++ b/src/lightdm-gtk-greeter.c
+@@ -707,12 +707,14 @@ G_MODULE_EXPORT
+ gboolean
+ username_key_press_cb (GtkWidget *widget, GdkEventKey *event, gpointer user_data)
+ {
+-    if (gtk_widget_get_visible(GTK_WIDGET(user_combo)))
++    if (gtk_widget_get_visible(GTK_WIDGET(username_entry)))
+     {
++
++      g_warning ("keyval = %x\n", event->keyval);
+ #if GTK_CHECK_VERSION (3, 0, 0)
+-        if (event->keyval == GDK_KEY_Tab)
++        if (event->keyval == GDK_KEY_Tab || event->keyval == GDK_KEY_Return)
+ #else
+-        if (event->keyval == GDK_Tab)
++        if (event->keyval == GDK_Tab || event->keyval == GDK_Return)
+ #endif
+         {
+             if (event->state & GDK_SHIFT_MASK)

Modified: goodies/trunk/lightdm-gtk-greeter/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm-gtk-greeter/debian/patches/series?rev=8022&op=diff
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/patches/series	(original)
+++ goodies/trunk/lightdm-gtk-greeter/debian/patches/series	Sat Oct 26 17:26:20 2013
@@ -1 +1,2 @@
 04_default-gtk-greeter-config.patch
+05_add-enter-shortcut-switch-login-password-fields.patch




More information about the Pkg-xfce-commits mailing list