open channel if its the first opened tab

This commit is contained in:
ouwou
2022-05-02 02:31:15 -04:00
parent c30ab91738
commit 63db16a711
3 changed files with 10 additions and 0 deletions

View File

@@ -170,6 +170,10 @@ void ChatWindow::SetTopic(const std::string &text) {
#ifdef WITH_LIBHANDY
void ChatWindow::OpenNewTab(Snowflake id) {
// open if its the first tab (in which case it really isnt a tab but whatever)
if (m_tab_switcher->GetNumberOfTabs() == 0) {
m_signal_action_channel_click.emit(id, false);
}
m_tab_switcher->AddChannelTab(id);
}