diff --git a/Telegram/Resources/lang.strings b/Telegram/Resources/lang.strings index 377de19c8..4f85b5cd7 100644 --- a/Telegram/Resources/lang.strings +++ b/Telegram/Resources/lang.strings @@ -166,11 +166,11 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org "lng_username_title" = "Change username"; "lng_username_about" = "You can choose a username on Telegram.\nIf you do, other people will be able to find\nyou by this username and contact you\nwithout knowing your phone number.\n\nYou can use a-z, 0-9 and underscores.\nMinimum length is 5 characters."; -"lng_username_invalid" = "This name is invalid."; -"lng_username_occupied" = "This name is already occupied."; -"lng_username_too_short" = "This name is too short."; -"lng_username_bad_symbols" = "This name has bad symbols."; -"lng_username_available" = "This name is available."; +"lng_username_invalid" = "This username is invalid."; +"lng_username_occupied" = "This username is already occupied."; +"lng_username_too_short" = "This username is too short."; +"lng_username_bad_symbols" = "This username has bad symbols."; +"lng_username_available" = "This username is available."; "lng_username_not_found" = "User @{user} not found."; "lng_settings_section_contact_info" = "Contact info"; diff --git a/Telegram/Resources/style.txt b/Telegram/Resources/style.txt index 49d06f8ea..89b40c441 100644 --- a/Telegram/Resources/style.txt +++ b/Telegram/Resources/style.txt @@ -961,9 +961,9 @@ btnSend: flatButton(btnDefFlat) { width: -32px; height: 46px; - textTop: 13px; - overTextTop: 13px; - downTextTop: 14px; + textTop: 12px; + overTextTop: 12px; + downTextTop: 13px; font: font(16px); overFont: font(16px); diff --git a/Telegram/SourceFiles/art/sprite.png b/Telegram/SourceFiles/art/sprite.png index 5219d61a8..3e973cd2a 100644 Binary files a/Telegram/SourceFiles/art/sprite.png and b/Telegram/SourceFiles/art/sprite.png differ diff --git a/Telegram/SourceFiles/art/sprite_200x.png b/Telegram/SourceFiles/art/sprite_200x.png index 442d7e3d3..97e9e2403 100644 Binary files a/Telegram/SourceFiles/art/sprite_200x.png and b/Telegram/SourceFiles/art/sprite_200x.png differ diff --git a/Telegram/SourceFiles/history.cpp b/Telegram/SourceFiles/history.cpp index fc4afd44c..8de3a9841 100644 --- a/Telegram/SourceFiles/history.cpp +++ b/Telegram/SourceFiles/history.cpp @@ -2010,10 +2010,10 @@ ImagePtr HistoryPhoto::replyPreview() { QString formatSizeText(qint64 size) { if (size >= 1024 * 1024) { // more than 1 mb qint64 sizeTenthMb = (size * 10 / (1024 * 1024)); - return QString::number(sizeTenthMb / 10) + '.' + QString::number(sizeTenthMb % 10) + qsl("MB"); + return QString::number(sizeTenthMb / 10) + '.' + QString::number(sizeTenthMb % 10) + qsl(" MB"); } qint64 sizeTenthKb = (size * 10 / 1024); - return QString::number(sizeTenthKb / 10) + '.' + QString::number(sizeTenthKb % 10) + qsl("KB"); + return QString::number(sizeTenthKb / 10) + '.' + QString::number(sizeTenthKb % 10) + qsl(" KB"); } QString formatDownloadText(qint64 ready, qint64 total) { diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index 4e4fe1813..9be5f69bd 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -3735,6 +3735,8 @@ void HistoryWidget::sendBotCommand(const QString &cmd, MsgId replyTo) { // reply hist->lastKeyboardUsed = true; } } + + _field.setFocus(); } void HistoryWidget::insertBotCommand(const QString &cmd) { diff --git a/Telegram/SourceFiles/mtproto/mtpConnection.cpp b/Telegram/SourceFiles/mtproto/mtpConnection.cpp index 413c04dc0..c71f5b202 100644 --- a/Telegram/SourceFiles/mtproto/mtpConnection.cpp +++ b/Telegram/SourceFiles/mtproto/mtpConnection.cpp @@ -1198,15 +1198,21 @@ void MTProtoConnectionPrivate::createConn(bool createIPv4, bool createIPv6) { void MTProtoConnectionPrivate::destroyConn(MTPabstractConnection **conn) { if (conn) { - QWriteLocker lock(&stateConnMutex); - if (*conn) { - disconnect(*conn, SIGNAL(disconnected()), 0, 0); - disconnect(*conn, SIGNAL(receivedData()), 0, 0); - disconnect(*conn, SIGNAL(receivedSome()), 0, 0); + MTPabstractConnection *toDisconnect = 0; - (*conn)->disconnectFromServer(); - (*conn)->deleteLater(); - *conn = 0; + { + QWriteLocker lock(&stateConnMutex); + if (*conn) { + toDisconnect = *conn; + disconnect(*conn, SIGNAL(disconnected()), 0, 0); + disconnect(*conn, SIGNAL(receivedData()), 0, 0); + disconnect(*conn, SIGNAL(receivedSome()), 0, 0); + *conn = 0; + } + } + if (toDisconnect) { + toDisconnect->disconnectFromServer(); + toDisconnect->deleteLater(); } } else { destroyConn(&_conn4);