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:
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user