From 88bcb98230c1fa688ab35ec88de76a5785dcb2a3 Mon Sep 17 00:00:00 2001 From: Kai Koehne <kai.koehne@nokia.com> Date: Thu, 22 Jul 2010 12:58:19 +0200 Subject: [PATCH] Outline: Exchange position of Filter, Sync buttons Make it the same order as in the Projects sidebar --- src/plugins/texteditor/outlinefactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/outlinefactory.cpp b/src/plugins/texteditor/outlinefactory.cpp index 374b53f2e93..72a32f1c082 100644 --- a/src/plugins/texteditor/outlinefactory.cpp +++ b/src/plugins/texteditor/outlinefactory.cpp @@ -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; } -- GitLab