Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added default workspace to the combobox
  • Loading branch information
jonalv committed Apr 16, 2012
1 parent d581f3a commit f2f9355
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -396,6 +396,12 @@ protected void okPressed() {
_lastUsedWorkspaces.removeAll(remove);
}

String wsps = getWorkspacePathSuggestion();

if ( !_lastUsedWorkspaces.contains( wsps ) ) {
_lastUsedWorkspaces.add( wsps );
}

// create a string concatenation of all our last used workspaces
StringBuffer buf = new StringBuffer();
for (int i = 0; i < _lastUsedWorkspaces.size(); i++) {
Expand Down

0 comments on commit f2f9355

Please sign in to comment.