Skip to content

Commit

Permalink
Fix #7240.
Browse files Browse the repository at this point in the history
Former-commit-id: 045cb1c76fcad459a46574d380f8813c68876531
  • Loading branch information
ylangisc committed May 23, 2013
1 parent f5f3d6e commit f49d26e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/ch/cyberduck/ui/winforms/BrowserForm.cs
Expand Up @@ -565,7 +565,8 @@ public void PopulateQuickConnect(List<string> nicknames)
public void SetBrowserModel(IEnumerable<Path> model)
{
// Clear the cache in order to avoid strange side effects
browser.ClearCachedInfo();
browser.RebuildAll(true);
browser.ClearCachedInfo();
browser.SetObjects(model);

//only restore the state for the first time
Expand Down

0 comments on commit f49d26e

Please sign in to comment.