From: <dat...@us...> - 2006-12-04 21:56:48
|
Revision: 17895 http://svn.sourceforge.net/gaim/?rev=17895&view=rev Author: datallah Date: 2006-12-04 13:56:32 -0800 (Mon, 04 Dec 2006) Log Message: ----------- Patch #1606353 from charkins to fix bug #1604257 (unseen convs in hidden window being incorrectly marked as seen). Modified Paths: -------------- trunk/gtk/gtkconv.c Modified: trunk/gtk/gtkconv.c =================================================================== --- trunk/gtk/gtkconv.c 2006-12-04 12:52:18 UTC (rev 17894) +++ trunk/gtk/gtkconv.c 2006-12-04 21:56:32 UTC (rev 17895) @@ -7526,7 +7526,10 @@ g_return_if_fail(conv != NULL); - gtkconv_set_unseen(gtkconv, GAIM_UNSEEN_NONE); + /* clear unseen flag if conversation is not hidden */ + if(!gaim_gtkconv_is_hidden(gtkconv)) { + 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. |