mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 06:07:06 +02:00
Fixed visual glitch in image size text from SendFilexBox.
Regression was introduced in f52c6a6daa
.
This commit is contained in:
parent
6b93d8dc41
commit
cab8a52f8f
1 changed files with 3 additions and 1 deletions
|
@ -76,7 +76,9 @@ AlbumThumbnail::AlbumThumbnail(
|
|||
const auto filepath = file.path;
|
||||
if (filepath.isEmpty()) {
|
||||
_name = "image.png";
|
||||
_status = u"%1x%2"_q.arg(_fullPreview.width(), _fullPreview.height());
|
||||
_status = u"%1x%2"_q
|
||||
.arg(_fullPreview.width())
|
||||
.arg(_fullPreview.height());
|
||||
} else {
|
||||
auto fileinfo = QFileInfo(filepath);
|
||||
_name = fileinfo.fileName();
|
||||
|
|
Loading…
Add table
Reference in a new issue