Added tag and branch list to workspace view

FossilOrigin-Name: 304f9bd6c61babe7abc522c1a1301fe3f1887505
This commit is contained in:
kostas
2015-05-02 12:44:09 +00:00
parent a48f81d1f5
commit 729caef32e
7 changed files with 107 additions and 18 deletions

View File

@@ -186,6 +186,15 @@ void Workspace::scanWorkspace(bool scanLocal, bool scanIgnored, bool scanModifie
// Load the stash
fossil().stashList(getStashes());
fossil().branchList(branchList, branchList);
fossil().tagList(tagList);
// Fossil includes the branches in the tag list
// So remove them
foreach(const QString &name, branchList)
tagList.removeAll(name);
_done:
uiCallback.endProcess();
}