diff --git a/xqf/ChangeLog b/xqf/ChangeLog index c171a61..0d76fde 100644 --- a/xqf/ChangeLog +++ b/xqf/ChangeLog @@ -1,3 +1,7 @@ +Oct 27, 2002: Alex +- Number of servers in status bar now updated when enabling / disabling a + filter + Oct 26, 2002: Alex - Set focus to Game Contains when adding new server filter - Set focus to Game when adding new custom arg diff --git a/xqf/src/xqf.c b/xqf/src/xqf.c index 7ef1a14..44881ed 100644 --- a/xqf/src/xqf.c +++ b/xqf/src/xqf.c @@ -571,6 +571,8 @@ static void filter_toggle_callback (GtkWidget *widget, unsigned char mask) { if (!forced_filters_flag) { cur_filter ^= mask; server_clist_build_filtered (cur_server_list, FALSE); /* in srv-list.c */ + print_status (main_status_bar, (server_clist->rows == 1) ? + _("%d server") : _("%d servers"), server_clist->rows); } }