public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Whitespace fixes and comments
Emmanuele Bassi (author)
Thu May 22 14:47:32 -0700 2008
commit  e52cac0fd0c66685bb526151342b488a0120ccac
tree    35bac0ebd7a41e735154834017f28e0235eec2d6
parent  c05d8d1f7b3a737ba6141677dbba6d283e9c3783
...
120
121
122
 
123
124
125
...
267
268
269
 
270
271
272
...
290
291
292
293
 
294
295
296
...
120
121
122
123
124
125
126
...
268
269
270
271
272
273
274
...
292
293
294
 
295
296
297
298
0
@@ -120,6 +120,7 @@ on_status_received (TwitterClient *client,
0
       tweet_actor_animate (priv->spinner, TWEET_LINEAR, 500,
0
                            "opacity", tweet_interval_new (G_TYPE_UCHAR, 127, 0),
0
                            NULL);
0
+
0
       g_warning ("Unable to retrieve status from Twitter: %s", error->message);
0
     }
0
   else
0
@@ -267,6 +268,7 @@ on_status_view_button_release (ClutterActor *actor,
0
           return FALSE;
0
         }
0
 
0
+ /* FIXME - abstract this call into a TweetStatusModel method */
0
       tidy_list_view_get_cell_geometry (TIDY_LIST_VIEW (priv->status_view),
0
                                         priv->press_row, 0,
0
                                         TRUE,
0
@@ -290,7 +292,7 @@ on_status_view_button_release (ClutterActor *actor,
0
 
0
       tweet_actor_animate (info, TWEET_LINEAR, 250,
0
                            "y", tweet_interval_new (G_TYPE_INT, geometry.y + CANVAS_PADDING, 100 + CANVAS_PADDING),
0
- "height", tweet_interval_new (G_TYPE_INT, 10, (CANVAS_HEIGHT - 200)),
0
+ "height", tweet_interval_new (G_TYPE_INT, 10, (CANVAS_HEIGHT - (100 * 2))),
0
                            "opacity", tweet_interval_new (G_TYPE_UCHAR, 0, 196),
0
                            NULL);
0
 

Comments

    No one has commented yet.