From 57cac11e2082c68b6e8b821e4bf6388a784cc2eb Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 11 Apr 2019 11:57:53 +0200 Subject: [PATCH] Make task details visible by default It used to hide to bottom part of the vertical scrollbar of editors, but it moved a bit to the left. It will still hide some UI, but the issue is probably less ugly now, and can still be turned off by users. Change-Id: I9522658f658300212cd205f9e07b165b2dd393f8 Reviewed-by: Alessandro Portale --- src/plugins/coreplugin/progressmanager/progressmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/progressmanager/progressmanager.cpp b/src/plugins/coreplugin/progressmanager/progressmanager.cpp index bbf0f0b8204..d822397b906 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager.cpp +++ b/src/plugins/coreplugin/progressmanager/progressmanager.cpp @@ -292,7 +292,7 @@ void ProgressManagerPrivate::readSettings() { QSettings *settings = ICore::settings(); settings->beginGroup(QLatin1String(kSettingsGroup)); - m_progressViewPinned = settings->value(QLatin1String(kDetailsPinned), false).toBool(); + m_progressViewPinned = settings->value(QLatin1String(kDetailsPinned), true).toBool(); settings->endGroup(); }