public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Change the refresh interval

Thirty seconds are too short: make it five minutes.
Emmanuele Bassi (author)
Sun May 18 15:42:17 -0700 2008
commit  187cedba114d5ee1c382f85083f9af6052d40099
tree    edb36b5ee7c4559dca514145c6338b49b9432c47
parent  f1475e659bd6655f0a3307b60c551ad15b00690f
...
142
143
144
145
 
146
147
148
...
160
161
162
163
 
164
165
166
...
142
143
144
 
145
146
147
148
...
160
161
162
 
163
164
165
166
0
@@ -142,7 +142,7 @@ tweet_config_class_init (TweetConfigClass *klass)
0
                                                       "Refresh Time",
0
                                                       "Refresh interval",
0
                                                       0, G_MAXUINT,
0
- 30,
0
+ 300,
0
                                                       G_PARAM_READWRITE));
0
 
0
   config_signals[CHANGED] =
0
@@ -160,7 +160,7 @@ tweet_config_init (TweetConfig *config)
0
 {
0
   config->priv = TWEET_CONFIG_GET_PRIVATE (config);
0
 
0
- config->priv->refresh_time = 30;
0
+ config->priv->refresh_time = 300;
0
 }
0
 
0
 TweetConfig *

Comments

    No one has commented yet.