diff options
Diffstat (limited to 'src/components/chatwindow.cpp')
-rw-r--r-- | src/components/chatwindow.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/chatwindow.cpp b/src/components/chatwindow.cpp index 8667488..3cfde1b 100644 --- a/src/components/chatwindow.cpp +++ b/src/components/chatwindow.cpp @@ -192,6 +192,14 @@ void ChatWindow::GoBack() { void ChatWindow::GoForward() { m_tab_switcher->GoForwardOnCurrent(); } + +void ChatWindow::GoToPreviousTab() { + m_tab_switcher->GoToPreviousTab(); +} + +void ChatWindow::GoToNextTab() { + m_tab_switcher->GoToNextTab(); +} #endif Snowflake ChatWindow::GetActiveChannel() const { |