Skip to content

Commit

Permalink
Fixed a random appearing of "#" in title of tab.
Browse files Browse the repository at this point in the history
  • Loading branch information
23rd committed Jan 2, 2019
1 parent 2215d64 commit ea20901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chatty/gui/Channels.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public void setChannelNewStatus(String ownerChannel) {

// TODO: Retain new status and stuff, and maybe reset new status when clicked on one of the tabs belong to the stream
public void updateChannelTabName(Channel channel) {
tabs.setTitleForComponent(channel, channel.getName(), channel.getToolTipText());
tabs.setTitleForComponent(channel, ForkUtil.removeSharpFromTitle(channel), channel.getToolTipText());
}

/**
Expand Down

0 comments on commit ea20901

Please sign in to comment.