Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[windows] Fix form macro encoding from file on windows
When loading a python file in a form on windows, the file is opened using the default system encoding (which may be different than UTF8, at least it wasn't on my tests and on my customer machines).

This patch makes UTF8 the codec used when loading python files from the filesystem before using them for a form.
  • Loading branch information
elpaso authored and nyalldawson committed May 18, 2021
1 parent 5772b83 commit 0f75881
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/gui/qgsattributeform.cpp
Expand Up @@ -1825,6 +1825,7 @@ void QgsAttributeForm::initPython()
{
// Read it into a string
QTextStream inf( inputFile );
inf.setCodec( "UTF-8" );
initCode = inf.readAll();
inputFile->close();
}
Expand Down

0 comments on commit 0f75881

Please sign in to comment.