From 4cc9f1f3b4f8c58f4c4cf5db987591de4d0d19c0 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 24 Jul 2016 10:21:52 +0300 Subject: [PATCH] Crashfix on space/return press in MediaView when viewing a photo. --- Telegram/SourceFiles/mediaview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/mediaview.cpp b/Telegram/SourceFiles/mediaview.cpp index c43285bea..b171ceded 100644 --- a/Telegram/SourceFiles/mediaview.cpp +++ b/Telegram/SourceFiles/mediaview.cpp @@ -1796,7 +1796,7 @@ void MediaView::keyPressEvent(QKeyEvent *e) { } else if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return || e->key() == Qt::Key_Space) { if (_doc && !_doc->loading() && (!fileShown() || !_doc->loaded())) { onDocClick(); - } else if (_doc->isVideo()) { + } else if (_doc && _doc->isVideo()) { onVideoPauseResume(); } } else if (e->key() == Qt::Key_Left) {