Outline: Exchange position of Filter, Sync buttons

Make it the same order as in the Projects sidebar
This commit is contained in:
Kai Koehne
2010-07-22 12:58:19 +02:00
parent 0ccdbbc91d
commit 88bcb98230

View File

@@ -176,8 +176,8 @@ Core::NavigationView OutlineFactory::createWidget()
Core::NavigationView n;
OutlineWidgetStack *placeHolder = new OutlineWidgetStack(this);
n.widget = placeHolder;
n.dockToolBarWidgets.append(placeHolder->toggleSyncButton());
n.dockToolBarWidgets.append(placeHolder->filterButton());
n.dockToolBarWidgets.append(placeHolder->toggleSyncButton());
return n;
}