(no commit message)
[prss.git] / src / main.c
index e202433..b01700e 100644 (file)
@@ -243,14 +243,21 @@ int headline_cursor_changed_cbk(GtkTreeView *treeview, gpointer data)
 
                str = ttrss_get_headline_content(headline);
 
 
                str = ttrss_get_headline_content(headline);
 
-               if (headline->unread)
-                       ttrss_set_article_unread(headline->id, 0);
-
                if (str)
                        web_load(str);
                else
                        web_load("");
 
                if (str)
                        web_load(str);
                else
                        web_load("");
 
+               if (headline->unread) {
+                       ttrss_set_article_unread(headline->id, 0);
+                       headline->unread = 0;
+               }
+
+               gtk_list_store_set(GTK_LIST_STORE(model),
+                                  &iter,
+                                  0, headline->title,
+                                  -1);
+
                gtk_tree_path_free(path);
        }
 
                gtk_tree_path_free(path);
        }