Skip to content

Commit

Permalink
Quick edit to put @-handle next to name in RT line
Browse files Browse the repository at this point in the history
The tweet author uses a separate button and label for name and handle
but the RT already includes bespoke HTML, so we extend that

Fixes bug baedert#234
  • Loading branch information
IBBoard committed Feb 10, 2018
1 parent b298aa4 commit ebea9e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/list/TweetListEntry.vala
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ public class TweetListEntry : Cb.TwitterItem, Gtk.ListBoxRow {
.append (tweet.source_tweet.author.screen_name)
.append ("\">")
.append (tweet.source_tweet.author.user_name)
.append ("</a></span>");
.append ("</a> @")
.append (tweet.source_tweet.author.screen_name)
.append ("</span>");
rt_label.label = buff.str;
}

Expand Down

0 comments on commit ebea9e0

Please sign in to comment.