1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-21 12:26:34 -04:00

Don't change filenames on Android

This commit is contained in:
Jon Beniston 2024-06-29 11:50:44 +01:00
parent e22688e462
commit 97193ef34d
2 changed files with 6 additions and 0 deletions

View File

@ -375,11 +375,14 @@ void ConfigurationsDialog::on_configurationExport_clicked()
if (fileName != "") if (fileName != "")
{ {
#ifndef ANDROID
// Can't change filenames on Android
QFileInfo fileInfo(fileName); QFileInfo fileInfo(fileName);
if (fileInfo.suffix() != "cfgx") { if (fileInfo.suffix() != "cfgx") {
fileName += ".cfgx"; fileName += ".cfgx";
} }
#endif
QFile exportFile(fileName); QFile exportFile(fileName);

View File

@ -297,11 +297,14 @@ void DeviceSetPresetsDialog::on_presetExport_clicked()
if (fileName != "") if (fileName != "")
{ {
#ifndef ANDROID
// Can't change filenames on Android
QFileInfo fileInfo(fileName); QFileInfo fileInfo(fileName);
if (fileInfo.suffix() != "prex") { if (fileInfo.suffix() != "prex") {
fileName += ".prex"; fileName += ".prex";
} }
#endif
QFile exportFile(fileName); QFile exportFile(fileName);