(no commit message)
authorJean-Philippe Orsini <jeanfi@gmail.com>
Tue, 23 Apr 2013 14:32:00 +0000 (14:32 +0000)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Tue, 23 Apr 2013 14:32:00 +0000 (14:32 +0000)
src/main.c
src/ttrss.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);
        }
 
index 2a94e99..e64c7af 100644 (file)
@@ -59,7 +59,6 @@ void ttrss_login(const char *url, const char *user, const char *password)
        strcat(session_url, "/api/");
        free(tmp);
 
        strcat(session_url, "/api/");
        free(tmp);
 
-
        rq = create_op("login");
        json_object_object_add(rq, "user", json_object_new_string(user));
        json_object_object_add(rq,
        rq = create_op("login");
        json_object_object_add(rq, "user", json_object_new_string(user));
        json_object_object_add(rq,