After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 143253 - "Only New Articles" button becomes sticky
"Only New Articles" button becomes sticky
Status: RESOLVED DUPLICATE of bug 128154
Product: Pan
Classification: Other
Component: general
0.14.2
Other Linux
: Normal normal
: ---
Assigned To: Charles Kerr
Pan QA Team
Depends on:
Blocks:
 
 
Reported: 2004-05-27 03:14 UTC by Carl Schaefer
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.1/2.2



Description Carl Schaefer 2004-05-27 03:14:59 UTC
The "show only new articles" button becomes permanent for a group
if the button is active and a different group is selected.  After returning to
the first group, the effect of the "only new articles" button cannot be
undone except by selecting "Match Read" and "Match Unread" in the Filter
menu.  The following patch seems to fix this for me...

--- filter-mediator.c,0	2003-08-14 10:48:41.000000000 -0400
+++ filter-mediator.c	2004-05-26 21:52:59.000000000 -0400
@@ -257,6 +257,9 @@ show_only_new_tb_cb (GtkToggleButton * t
 
 	if (active)
 		_menu_new_bits = _filter_bits & NEW_MASK;
+	else
+		if (_menu_new_bits == STATE_FILTER_NEW)
+			_menu_new_bits = NEW_MASK;
 
 	set_mask_bits (NEW_MASK, active ? STATE_FILTER_NEW : _menu_new_bits);
 }
Comment 1 Christophe Lambin 2004-05-29 10:14:21 UTC

*** This bug has been marked as a duplicate of 128154 ***