← Back to team overview

birdie-team team mailing list archive

[Merge] lp:~edersohe/birdie/fix-1148537 into lp:birdie

 

Eder Sosa has proposed merging lp:~edersohe/birdie/fix-1148537 into lp:birdie.

Requested reviews:
  Birdie Team (birdie-team)
Related bugs:
  Bug #1148537 in Birdie: "Click on names to view profile"
  https://bugs.launchpad.net/birdie/+bug/1148537

For more details, see:
https://code.launchpad.net/~edersohe/birdie/fix-1148537/+merge/153998
-- 
https://code.launchpad.net/~edersohe/birdie/fix-1148537/+merge/153998
Your team Birdie Team is requested to review the proposed merge of lp:~edersohe/birdie/fix-1148537 into lp:birdie.
=== modified file 'src/Widgets/TweetBox.vala'
--- src/Widgets/TweetBox.vala	2013-03-17 19:25:20 +0000
+++ src/Widgets/TweetBox.vala	2013-03-19 06:46:21 +0000
@@ -56,7 +56,7 @@
                 tweet.user_name = tweet.user_name.replace ("&", "&");
             
             this.user_name = new Gtk.Label (tweet.user_name);
-            this.user_name.set_markup ("<span font_weight='bold' size='large'>" + tweet.user_name + "</span>");
+            this.user_name.set_markup ("<span underline='none' color='#000000' font_weight='bold' size='large'><a href='https://twitter.com/"; + tweet.user_screen_name + "'>" + tweet.user_name + " Hola" + "</a></span>");
             this.user_name.set_alignment (0, 0);
             this.user_screen_name = new Gtk.Label (tweet.user_screen_name);
             this.user_screen_name.set_markup ("<span font_weight='light' color='#aaaaaa'>@" + tweet.user_screen_name + "</span>");