summaryrefslogtreecommitdiff
path: root/src/components/chatwindow.cpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2022-05-10 01:09:42 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2022-05-10 01:09:42 -0400
commit1d8ef79da68a89c4561b9079b795d05484ddc419 (patch)
treeb0c223e933897509ef346e6ba5b96612e432f4f0 /src/components/chatwindow.cpp
parentbbf32730cd322ab8d826b9fb73d83fbde73c5419 (diff)
downloadabaddon-portaudio-1d8ef79da68a89c4561b9079b795d05484ddc419.tar.gz
abaddon-portaudio-1d8ef79da68a89c4561b9079b795d05484ddc419.zip
add ctrl+number key shortcuts for tabs
Diffstat (limited to 'src/components/chatwindow.cpp')
-rw-r--r--src/components/chatwindow.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/chatwindow.cpp b/src/components/chatwindow.cpp
index 3cfde1b..5aab4e6 100644
--- a/src/components/chatwindow.cpp
+++ b/src/components/chatwindow.cpp
@@ -200,6 +200,10 @@ void ChatWindow::GoToPreviousTab() {
void ChatWindow::GoToNextTab() {
m_tab_switcher->GoToNextTab();
}
+
+void ChatWindow::GoToTab(int idx) {
+ m_tab_switcher->GoToTab(idx);
+}
#endif
Snowflake ChatWindow::GetActiveChannel() const {