[network-manager-openconnect] Don't leave the *only* entry box unfocused just because it has a default
- From: David Woodhouse <dwmw2 src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [network-manager-openconnect] Don't leave the *only* entry box unfocused just because it has a default
- Date: Sat, 16 Jun 2012 00:51:13 +0000 (UTC)
commit 073f71c3b205699bf6e7c7daa24fedf2d9c72638
Author: David Woodhouse <David Woodhouse intel com>
Date: Sat Jun 16 01:36:25 2012 +0100
Don't leave the *only* entry box unfocused just because it has a default
auth-dialog/main.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/auth-dialog/main.c b/auth-dialog/main.c
index 45b086a..870c22b 100644
--- a/auth-dialog/main.c
+++ b/auth-dialog/main.c
@@ -412,10 +412,15 @@ static gboolean ui_write_prompt (ui_fragment_data *data)
gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE);
if (data->entry_text)
gtk_entry_set_text(GTK_ENTRY(entry), data->entry_text);
+ /* If it's the first empty one, grab focus. Otherwise, if
+ it's the first item of *any* kind, grab focus but don't
+ admit it (so another empty entry can take focus_ */
if (!data->entry_text && !data->ui_data->form_grabbed) {
data->ui_data->form_grabbed = 1;
gtk_widget_grab_focus (entry);
- }
+ } else if (g_queue_peek_tail(ui_data->form_entries) == data)
+ gtk_widget_grab_focus (entry);
+
g_signal_connect(G_OBJECT(entry), "changed", G_CALLBACK(entry_changed), data);
g_signal_connect(G_OBJECT(entry), "activate", G_CALLBACK(entry_activate_cb), ui_data);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]