changeset 30594:dd6575f20790

pidgin: Re-set focus after clicking on the attention button. Closes #12124
author Marcus Lundblad <ml@update.uu.se>
date Mon, 07 Jun 2010 19:41:55 +0000
parents bed884491864
children 0c8d1b152b16
files ChangeLog libpurple/protocols/jabber/si.c pidgin/gtkimhtmltoolbar.c
diffstat 3 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Jun 06 02:17:36 2010 +0000
+++ b/ChangeLog	Mon Jun 07 19:41:55 2010 +0000
@@ -1,6 +1,8 @@
 Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
 
 version 2.7.2 (??/??/????):
+	Pidgin:
+	* Re-focus the input area after clicking the attention toolbar button.
 
 version 2.7.1 (05/29/2010):
 	General:
--- a/libpurple/protocols/jabber/si.c	Sun Jun 06 02:17:36 2010 +0000
+++ b/libpurple/protocols/jabber/si.c	Mon Jun 07 19:41:55 2010 +0000
@@ -40,7 +40,7 @@
 #include "si.h"
 
 #define STREAMHOST_CONNECT_TIMEOUT 15
-#define ENABLE_FT_THUMBNAILS 0
+#define ENABLE_FT_THUMBNAILS 1
 
 typedef struct _JabberSIXfer {
 	JabberStream *js;
--- a/pidgin/gtkimhtmltoolbar.c	Sun Jun 06 02:17:36 2010 +0000
+++ b/pidgin/gtkimhtmltoolbar.c	Mon Jun 07 19:41:55 2010 +0000
@@ -911,6 +911,7 @@
 
 	toggle_button_set_active_block(GTK_TOGGLE_BUTTON(attention), FALSE, toolbar);
 	purple_prpl_send_attention(gc, who, 0);
+	gtk_widget_grab_focus(toolbar->imhtml);
 }
 
 static void update_buttons_cb(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, GtkIMHtmlToolbar *toolbar)