From 75de65564206d7ccfd9aba631be55ae90916aefc Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 11 Feb 2020 13:28:53 +0400 Subject: [PATCH] Fix #6804 once again. --- Telegram/SourceFiles/core/application.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Telegram/SourceFiles/core/application.cpp b/Telegram/SourceFiles/core/application.cpp index ae0213791..6d2ea38a2 100644 --- a/Telegram/SourceFiles/core/application.cpp +++ b/Telegram/SourceFiles/core/application.cpp @@ -238,7 +238,9 @@ void Application::run() { DEBUG_LOG(("Application Info: showing.")); _window->firstShow(); + const auto currentGeometry = _window->widget()->geometry(); _mediaView = std::make_unique(); + _window->widget()->setGeometry(currentGeometry); if (!locked() && cStartToSettings()) { _window->showSettings();