You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/gnome-extra/nautilus-sendto/files/nautilus-sendto-2.28.4-item...

33 lines
1009 B

From 90859ca39bb877b665bb99da73c47569dc6a55b0 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Wed, 09 Jun 2010 16:13:01 +0000
Subject: Make the last selected medium's widget grab focus
https://bugzilla.gnome.org/show_bug.cgi?id=615214
---
diff --git a/src/nautilus-sendto-command.c b/src/nautilus-sendto-command.c
index 674d774..dd21620 100644
--- a/src/nautilus-sendto-command.c
+++ b/src/nautilus-sendto-command.c
@@ -429,6 +429,7 @@ set_model_for_options_combobox (NS_ui *ui)
GtkListStore *model;
GtkIconTheme *it;
GtkCellRenderer *renderer;
+ GtkWidget *widget;
GList *aux;
NstPlugin *p;
char *last_used = NULL;
@@ -484,6 +485,10 @@ set_model_for_options_combobox (NS_ui *ui)
gtk_combo_box_set_active (GTK_COMBO_BOX (ui->options_combobox), option);
+ /* Grab the focus for the most recently used widget */
+ widget = g_list_nth_data (ui->contact_widgets, option);
+ gtk_widget_grab_focus (widget);
+
return last_used_support_dirs;
}
--
cgit v0.8.3.1