diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index bed14d0b8..401a884d4 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -88,6 +88,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_continue" = "Continue"; "lng_close" = "Close"; "lng_connecting" = "Connecting..."; +"lng_connecting_to_proxy" = "Connecting to proxy..."; +"lng_connecting_settings" = "Settings"; "lng_reconnecting#one" = "Reconnect in {count} s..."; "lng_reconnecting#other" = "Reconnect in {count} s..."; "lng_reconnecting_try_now" = "Try now"; diff --git a/Telegram/SourceFiles/mainwindow.cpp b/Telegram/SourceFiles/mainwindow.cpp index 4d78769ba..3f279e141 100644 --- a/Telegram/SourceFiles/mainwindow.cpp +++ b/Telegram/SourceFiles/mainwindow.cpp @@ -41,6 +41,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "boxes/confirm_box.h" #include "boxes/contacts_box.h" #include "boxes/add_contact_box.h" +#include "boxes/connection_box.h" #include "observer_peer.h" #include "autoupdater.h" #include "mediaview.h" @@ -113,7 +114,12 @@ void ConnectingWidget::paintEvent(QPaintEvent *e) { } void ConnectingWidget::onReconnect() { - MTP::restart(); + auto throughProxy = (Global::ConnectionType() != dbictAuto); + if (throughProxy) { + Ui::show(Box()); + } else { + MTP::restart(); + } } MainWindow::MainWindow() { @@ -371,13 +377,14 @@ void MainWindow::mtpStateChanged(int32 dc, int32 state) { } void MainWindow::updateConnectingStatus() { - int32 state = MTP::dcstate(); + auto state = MTP::dcstate(); + auto throughProxy = (Global::ConnectionType() != dbictAuto); if (state == MTP::ConnectingState || state == MTP::DisconnectedState || (state < 0 && state > -600)) { if (_main || getms() > 5000 || _connecting) { - showConnecting(lang(lng_connecting)); + showConnecting(lang(throughProxy ? lng_connecting_to_proxy : lng_connecting), throughProxy ? lang(lng_connecting_settings) : QString()); } } else if (state < 0) { - showConnecting(lng_reconnecting(lt_count, ((-state) / 1000) + 1), lang(lng_reconnecting_try_now)); + showConnecting(lng_reconnecting(lt_count, ((-state) / 1000) + 1), lang(throughProxy ? lng_connecting_settings : lng_reconnecting_try_now)); QTimer::singleShot((-state) % 1000, this, SLOT(updateConnectingStatus())); } else { hideConnecting();