From ec99c9ee609d81c159deeb4f2a5f3ff517b906d2 Mon Sep 17 00:00:00 2001 From: auchri Date: Wed, 16 Sep 2015 20:35:26 +0200 Subject: [PATCH 1/3] Fix link in readme Fix #1098 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0003c9ba2..cb45fdc63 100644 --- a/README.md +++ b/README.md @@ -105,4 +105,4 @@ The source code is published under GPL v3, the license is available [here][licen [msvc]: MSVC.md [xcode]: XCODE.md [xcode_old]: XCODEold.md -[qtcreator]: qtcreator.md \ No newline at end of file +[qtcreator]: QTCREATOR.md From 446dc101eaf423df74006b2858b25c91c35e75a0 Mon Sep 17 00:00:00 2001 From: auchri Date: Thu, 17 Sep 2015 15:13:40 +0200 Subject: [PATCH 2/3] Fix spelling of GPLv3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb45fdc63..2c72d8eab 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is the complete source code and the build instructions for the alpha version of the official desktop client for the [Telegram][telegram] messenger, based on the [Telegram API][telegram_api] and the [MTProto][telegram_proto] secure protocol. -The source code is published under GPL v3, the license is available [here][license]. +The source code is published under GPLv3, the license is available [here][license]. ## Supported systems From f0123fffa8cd81515c5e5af737548b1aba7886e9 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 22 Sep 2015 12:55:26 +0300 Subject: [PATCH 3/3] fixed keyboard hide --- Telegram/SourceFiles/historywidget.cpp | 1 + Telegram/SourceFiles/window.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index 49887732a..922c2ffbc 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -3188,6 +3188,7 @@ void HistoryWidget::updateControlsVisibility() { _cmdStart.hide(); _attachType.hide(); _emojiPan.hide(); + _kbScroll.hide(); if (!_field.isHidden()) { _field.hide(); resizeEvent(0); diff --git a/Telegram/SourceFiles/window.cpp b/Telegram/SourceFiles/window.cpp index 13931cea0..45c06b49f 100644 --- a/Telegram/SourceFiles/window.cpp +++ b/Telegram/SourceFiles/window.cpp @@ -1567,7 +1567,7 @@ void Window::notifyUpdateAllPhotos() { (*i)->updatePeerPhoto(); } } - if (_mediaView) _mediaView->updateControls(); + if (_mediaView && !_mediaView->isHidden()) _mediaView->updateControls(); } void Window::notifyUpdateAll() {