2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Ignoring accents when autocompleting mentions in field_autocomplete.

Do nothing instead of showing in folder a media file with bad extension.
Showing descriptive error message when we hit the limit of stickerpacks.
This commit is contained in:
John Preston
2016-07-07 19:16:47 +03:00
parent 562c5621f5
commit 352b0f2079
5 changed files with 10 additions and 11 deletions

View File

@@ -1543,8 +1543,6 @@ void MainWidget::audioPlayProgress(const AudioMsgId &audioId) {
if (!filepath.isEmpty()) {
if (documentIsValidMediaFile(filepath)) {
psOpenFile(filepath);
} else {
psShowInFolder(filepath);
}
}
}
@@ -1574,8 +1572,6 @@ void MainWidget::documentPlayProgress(const SongMsgId &songId) {
if (!filepath.isEmpty()) {
if (documentIsValidMediaFile(filepath)) {
psOpenFile(filepath);
} else {
psShowInFolder(filepath);
}
}
}