mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-17 05:22:31 -04:00
Fix other QFileDialog call in misc adding DontUseNativeDialog option.
This commit is contained in:
parent
64b56092d3
commit
6935441e4f
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ bool misc::getSaveFileName(QWidget *parent, RshareSettings::enumLastDir type
|
|||
{
|
||||
QString lastDir = Settings->getLastDir(type);
|
||||
|
||||
file = QFileDialog::getSaveFileName(parent, caption, lastDir, filter, selectedFilter, options);
|
||||
file = QFileDialog::getSaveFileName(parent, caption, lastDir, filter, selectedFilter, QFileDialog::DontUseNativeDialog | options);
|
||||
|
||||
if (file.isEmpty())
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue