You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I open an issue as I find this bug interesting. It might help a user spotting it or another developper facing the same problem.
Qucs-RFlayout parses schematic files correctly when using its CLI. But using the Qt GUI, decimal values are truncted at the dot.
In both cases, the same parser is used so what is going on?
It is due to QApplication() unsetting the C library locales by performing setlocale(LC_ALL, "").
The problem is described here and is solved this way :
I open an issue as I find this bug interesting. It might help a user spotting it or another developper facing the same problem.
Qucs-RFlayout parses schematic files correctly when using its CLI. But using the Qt GUI, decimal values are truncted at the dot.
In both cases, the same parser is used so what is going on?
Here is the isolated problem :
It is due to
QApplication()
unsetting the C library locales by performingsetlocale(LC_ALL, "")
.The problem is described here and is solved this way :
The text was updated successfully, but these errors were encountered: