[Pkg-xfce-commits] r8229 - 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 moszumanska.debian.org
Tue Feb 11 22:17:35 UTC 2014


Author: corsac
Date: Tue Feb 11 22:17:35 2014
New Revision: 8229

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8229
Log:
  - 05_add-enter-shortcut-switch-login-password-fields added back a bit
    differently, since enter key is broken again.
* 

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=8229&op=diff
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/changelog	(original)
+++ goodies/trunk/lightdm-gtk-greeter/debian/changelog	Tue Feb 11 22:17:35 2014
@@ -4,8 +4,11 @@
   * debian/patches:
     - 07_fix-NULL-username dropped, included upstream.
     - 04_default-gtk-greeter-config refreshed.
+    - 05_add-enter-shortcut-switch-login-password-fields added back a bit
+      differently, since enter key is broken again.
   * debian/lightdm-xsession.desktop: drop file from source package, it's for
     lightdm actually.
+  * 
 
  -- Yves-Alexis Perez <corsac at debian.org>  Tue, 11 Feb 2014 21:57:02 +0100
 

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=8229&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	Tue Feb 11 22:17:35 2014
@@ -0,0 +1,16 @@
+=== modified file 'lightdm-gtk-greeter/src/lightdm-gtk-greeter.c'
+--- a/src/lightdm-gtk-greeter.c
++++ b/src/lightdm-gtk-greeter.c
+@@ -1151,9 +1151,12 @@ G_MODULE_EXPORT
+ gboolean
+ username_key_press_cb (GtkWidget *widget, GdkEventKey *event, gpointer user_data)
+ {
++    g_warning("event->keyval = %d\n", event->keyval);
+     /* Acts as password_entry */
+     if (event->keyval == GDK_KEY_Up)
+         return password_key_press_cb (widget, event, user_data);
++    else if(event->keyval == GDK_KEY_Return)
++        gtk_widget_grab_focus(GTK_WIDGET(password_entry));
+     else
+         return FALSE;
+ }

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=8229&op=diff
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/patches/series	(original)
+++ goodies/trunk/lightdm-gtk-greeter/debian/patches/series	Tue Feb 11 22:17:35 2014
@@ -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