mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-19 07:37:11 +02:00
icon changed for symbols emoji category, isReadable() used instead of exists() for saved file check
This commit is contained in:
parent
600e97b053
commit
2c95fa5e15
3 changed files with 1 additions and 1 deletions
Binary file not shown.
Before Width: | Height: | Size: 178 KiB After Width: | Height: | Size: 178 KiB |
Binary file not shown.
Before Width: | Height: | Size: 238 KiB After Width: | Height: | Size: 238 KiB |
|
@ -762,7 +762,7 @@ bool FileLocation::check() const {
|
|||
}
|
||||
|
||||
QFileInfo f(name());
|
||||
if (!f.exists() || !f.isReadable()) return false;
|
||||
if (!f.isReadable()) return false;
|
||||
|
||||
quint64 s = f.size();
|
||||
if (s > INT_MAX) return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue