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 2a6a67e..fcaf6c4 100644 --- a/src/components/chatwindow.cpp +++ b/src/components/chatwindow.cpp @@ -180,6 +180,14 @@ TabsState ChatWindow::GetTabsState() { void ChatWindow::UseTabsState(const TabsState &state) { m_tab_switcher->UseTabsState(state); } + +void ChatWindow::GoBack() { + m_tab_switcher->GoBackOnCurrent(); +} + +void ChatWindow::GoForward() { + m_tab_switcher->GoForwardOnCurrent(); +} #endif Snowflake ChatWindow::GetActiveChannel() const { |