We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 4739733 commit 650a6bbCopy full SHA for 650a6bb
src/gui/qgsattributeeditor.cpp
@@ -39,6 +39,7 @@
39
#include <QCalendarWidget>
40
#include <QDialogButtonBox>
41
#include <QSettings>
42
+#include <QDir>
43
44
void QgsAttributeEditor::selectFileName()
45
{
@@ -58,7 +59,8 @@ void QgsAttributeEditor::selectFileName()
58
59
if ( fileName.isNull() )
60
return;
61
- le->setText( fileName );
62
+ //le->setText( fileName );
63
+ le->setText( QDir::toNativeSeparators( fileName ) );
64
}
65
66
void QgsAttributeEditor::selectDate()
0 commit comments