From a54ecc3863ecd318b6cd95c550a35675975f3345 Mon Sep 17 00:00:00 2001 From: morkt Date: Fri, 15 Dec 2017 01:09:21 +0400 Subject: [PATCH] (GUI): strip quotes from path typed into location bar. --- GUI/MainWindow.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GUI/MainWindow.xaml.cs b/GUI/MainWindow.xaml.cs index ff43a42b..f1a3b90b 100644 --- a/GUI/MainWindow.xaml.cs +++ b/GUI/MainWindow.xaml.cs @@ -736,6 +736,7 @@ namespace GARbro.GUI if (e.Key != Key.Return) return; string path = (sender as AutoCompleteBox).Text; + path = path.Trim (' ', '"'); if (string.IsNullOrEmpty (path)) return; if (FullpathRe.IsMatch (path))