diff --git a/src/SyncTrayzor/Pages/ViewerViewModel.cs b/src/SyncTrayzor/Pages/ViewerViewModel.cs index 41f83146..05569041 100644 --- a/src/SyncTrayzor/Pages/ViewerViewModel.cs +++ b/src/SyncTrayzor/Pages/ViewerViewModel.cs @@ -234,7 +234,8 @@ private void BrowseFolderPath() if (result == CommonFileDialogResult.Ok) { var script = - @"$('#folderPath').val('" + dialog.FileName.Replace("\\", "\\\\").Replace("'", "\\'") + "')"; + @"$('#folderPath').val('" + dialog.FileName.Replace("\\", "\\\\").Replace("'", "\\'") + "');" + + @"$('#folderPath').change();"; this.WebBrowser.ExecuteScriptAsync(script); } });