This prevent the user to create folders and files with names containing whitespace characters at the beginning and the end.
Those characters are usually written by mistake and leads to bugs in some backup programs for example.
HOW DOES IT WORK?
The PR insert a function just before saving the user's path syntax (in the Import and Export window) to remove those whitespace characters using g_strstrip().
WHAT IS THIS FOR?
This prevent the user to create folders and files with names containing whitespace characters at the beginning and the end. Those characters are usually written by mistake and leads to bugs in some backup programs for example.
HOW DOES IT WORK?
The PR insert a function just before saving the user's path syntax (in the Import and Export window) to remove those whitespace characters using
g_strstrip()
.