mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-16 12:49:15 -04:00
Don't change filenames on Android
This commit is contained in:
@@ -375,11 +375,14 @@ void ConfigurationsDialog::on_configurationExport_clicked()
|
||||
|
||||
if (fileName != "")
|
||||
{
|
||||
#ifndef ANDROID
|
||||
// Can't change filenames on Android
|
||||
QFileInfo fileInfo(fileName);
|
||||
|
||||
if (fileInfo.suffix() != "cfgx") {
|
||||
fileName += ".cfgx";
|
||||
}
|
||||
#endif
|
||||
|
||||
QFile exportFile(fileName);
|
||||
|
||||
|
||||
@@ -297,11 +297,14 @@ void DeviceSetPresetsDialog::on_presetExport_clicked()
|
||||
|
||||
if (fileName != "")
|
||||
{
|
||||
#ifndef ANDROID
|
||||
// Can't change filenames on Android
|
||||
QFileInfo fileInfo(fileName);
|
||||
|
||||
if (fileInfo.suffix() != "prex") {
|
||||
fileName += ".prex";
|
||||
}
|
||||
#endif
|
||||
|
||||
QFile exportFile(fileName);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user