From f3595e379c2b2b2cd2b16f12565dc41ed3aec54b Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Mon, 6 Jan 2020 00:34:43 +0300 Subject: [PATCH] Added processing of small album thumb widths in SendFilesBox. --- Telegram/SourceFiles/boxes/send_files_box.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/boxes/send_files_box.cpp b/Telegram/SourceFiles/boxes/send_files_box.cpp index 094d9a087..2735c9475 100644 --- a/Telegram/SourceFiles/boxes/send_files_box.cpp +++ b/Telegram/SourceFiles/boxes/send_files_box.cpp @@ -84,7 +84,21 @@ void PaintAlbumThumbButtons( const auto skipTop = st::sendBoxAlbumGroupSkipTop; const auto groupWidth = size * 2 + skipInternal; - const auto groupX = point.x() + outerWidth - skipRight - groupWidth; + // If the width is tiny, it would be better to not display the buttons. + if (groupWidth > outerWidth) { + editButton->hide(); + deleteButton->hide(); + return; + } else if (deleteButton->isHidden() && editButton->isHidden()) { + editButton->show(); + deleteButton->show(); + } + + // If the width is too small, + // it would be better to display the buttons in the center. + const auto groupX = point.x() + ((groupWidth + skipRight * 2 > outerWidth) + ? (outerWidth - groupWidth) / 2 + : outerWidth - skipRight - groupWidth); const auto groupY = point.y() + skipTop; const auto skipFromArea = (clickArea - size) / 2;