From 29550f87484919065e24ecb513ec64b9a978d03f Mon Sep 17 00:00:00 2001 From: Stefan Werner Date: Wed, 29 May 2019 13:17:15 +0200 Subject: 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. --- intern/ghost/intern/GHOST_WindowCocoa.mm | 3 --- 1 file changed, 3 deletions(-) (limited to 'intern/ghost/intern/GHOST_WindowCocoa.mm') diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index fc4ad3dba74..26aa2e8e067 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -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]; } -- cgit v1.2.3