public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Separate the timestamp from the text in the status view

Improve the readability of the status text by splitting the
text from the timestamp text.
Emmanuele Bassi (author)
Thu Jul 03 08:43:52 -0700 2008
commit  79afa3cbaa9ebb027394d645be2b20666021425b
tree    376a7fba847d49d3f8341ab8c1a358af5a5d1922
parent  5ff40cff974d95032780e4e57c470d8ef63e267a
...
169
170
171
172
 
173
174
175
...
169
170
171
 
172
173
174
175
0
@@ -169,7 +169,7 @@ tweet_status_cell_constructed (GObject *gobject)
0
   twitter_date_to_time_val (twitter_status_get_created_at (cell->status), &timeval);
0
 
0
   created_at = tweet_format_time_for_display (&timeval);
0
- text = g_strdup_printf ("<b>%s</b> %s <small>%s</small>",
0
+ text = g_strdup_printf ("<b>%s</b> %s\n\n<small>%s</small>",
0
                           twitter_user_get_screen_name (user),
0
                           escaped,
0
                           created_at);

Comments

    No one has commented yet.