Analyzer: Use a more common default value for the initial dock area

Change-Id: I8449d7e540d715ffc1fbcc46b21a1a4ea7d740ab
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
hjk
2014-07-23 16:57:16 +02:00
parent 7bb3f728ef
commit b8adc78615
4 changed files with 8 additions and 15 deletions

View File

@@ -127,11 +127,11 @@ void QmlProfilerViewManager::createViews()
d->v8profilerView, SLOT(selectBySourceLocation(QString,int,int)));
QDockWidget *eventsDock = AnalyzerManager::createDockWidget
(d->profilerTool, d->eventsView, Qt::BottomDockWidgetArea);
(d->profilerTool, d->eventsView);
QDockWidget *timelineDock = AnalyzerManager::createDockWidget
(d->profilerTool, d->traceView, Qt::BottomDockWidgetArea);
(d->profilerTool, d->traceView);
QDockWidget *v8profilerDock = AnalyzerManager::createDockWidget
(d->profilerTool, d->v8profilerView, Qt::BottomDockWidgetArea);
(d->profilerTool, d->v8profilerView);
eventsDock->show();
timelineDock->show();