mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-10 18:43:28 -05:00
Don't change filenames on Android
This commit is contained in:
parent
e22688e462
commit
97193ef34d
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user