4-28-2011 Short Description: Fix for RPL Display Settings File Export/Import Bug Number: 5065 Release notes (y/n): Yes (in 6.0.6) For Release Nums: 6.0.6 and 6.1 Gnats 5065: RPL Display Settings File import fails This problem was solved by encoding and decoding spaces within font names. Note that this resolves the problem only for newly created settings export files. Existing (old) settings export files can be fixed by manually replacing spaces in the font name (in the second line of that text file) with " ". (That's the HTML character entity for a non-breaking space). ------------------------------- QtRpl/RplDisplaySettingsDlg.cpp ------------------------------- See changes in methods: void RplDisplaySettingsDlg::exportFile() void RplDisplaySettingsDlg::importFile() ... fontStr.replace (" ", " "); // encode space characters ... fontStr.replace (" ", " "); // decode encoded space chars ---