Fix T63383: macOS: Right-clicking the file name on the title bar

doesn't work as expected when the path includes a whitespace character

File path didn't need to be escaped.
This commit is contained in:
Stefan Werner 2019-05-29 13:17:15 +02:00
parent b0278b2486
commit 29550f8748
Notes: blender-bot 2023-02-14 03:05:18 +01:00
Referenced by issue #63383, macOS: Right-clicking the file name on the title bar doesn't work as expected when the path includes a whitespace character
1 changed files with 0 additions and 3 deletions

View File

@ -686,9 +686,6 @@ void GHOST_WindowCocoa::setTitle(const STR_String &title)
associatedFileName = [windowTitle substringWithRange:fileStrRange];
[m_window setTitle:[associatedFileName lastPathComponent]];
// Blender used file open/save functions converte file names into legal URL ones
associatedFileName = [associatedFileName
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
@try {
[m_window setRepresentedFilename:associatedFileName];
}