@BeckyEbook would you please try the following:
Replace
QString fsize = QString::number(ffsize, 'f', 2);
With
QString fsize = QLocale().toString(ffsize, 'f', 2);
Then your file sizes should use your decimal points and QLocale().toFloat() should now work and sorting should then work.
If that does work, please let me know and I will track down and fix all the other reports similarly.
|