diff --git a/Telegram/SourceFiles/boxes/photosendbox.cpp b/Telegram/SourceFiles/boxes/photosendbox.cpp index 73c4bbba5..6cff7cff7 100644 --- a/Telegram/SourceFiles/boxes/photosendbox.cpp +++ b/Telegram/SourceFiles/boxes/photosendbox.cpp @@ -190,7 +190,11 @@ void PhotoSendBox::hideAll() { void PhotoSendBox::showAll() { _sendButton.show(); _cancelButton.show(); - _compressed.show(); + if (_img && _img->type == ToPreparePhoto) { + _compressed.show(); + } else { + _compressed.hide(); + } } void PhotoSendBox::onSend(bool ctrlShiftEnter) {