From b056a07f6515c32d88c25266d8897d5c6615e79a Mon Sep 17 00:00:00 2001 From: fourtf Date: Sat, 23 Jun 2018 23:26:09 +0200 Subject: [PATCH] show changelog fix --- src/widgets/window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/window.cpp b/src/widgets/window.cpp index 81d4e6ae0..57aa83cb2 100644 --- a/src/widgets/window.cpp +++ b/src/widgets/window.cpp @@ -257,10 +257,10 @@ void Window::showEvent(QShowEvent *event) if (box->exec() == QMessageBox::Yes) { QDesktopServices::openUrl(QUrl("https://fourtf.com/chatterino-changelog/")); } - - getApp()->settings->currentVersion.setValue(CHATTERINO_VERSION); } + getApp()->settings->currentVersion.setValue(CHATTERINO_VERSION); + BaseWindow::showEvent(event); }