From: <aar...@us...> - 2006-08-25 07:02:21
|
Revision: 17028 Author: aaronsheldon Date: 2006-08-25 00:02:17 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=17028&view=rev Log Message: ----------- A user can already manipulate the tabs of a GTK conversation without focus with the mouse wheel, and can scroll up and down and read a conversation without focus. With these lines removed, the user can now also change a conversation from "read" to "unread" despite not having focused the window, merely with his mouse. Modified Paths: -------------- trunk/gtk/gtkconv.c Modified: trunk/gtk/gtkconv.c =================================================================== --- trunk/gtk/gtkconv.c 2006-08-25 02:25:31 UTC (rev 17027) +++ trunk/gtk/gtkconv.c 2006-08-25 07:02:17 UTC (rev 17028) @@ -7352,11 +7352,7 @@ g_return_if_fail(conv != NULL); - /* - * Only set "unseen" to "none" if the window has focus - */ - if (gaim_gtk_conv_window_has_focus(win)) - gtkconv_set_unseen(gtkconv, GAIM_UNSEEN_NONE); + gtkconv_set_unseen(gtkconv, GAIM_UNSEEN_NONE); /* Update the menubar */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |