summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2019-04-11 11:57:53 +0200
committerEike Ziller <eike.ziller@qt.io>2019-04-12 07:20:09 +0000
commit57cac11e2082c68b6e8b821e4bf6388a784cc2eb (patch)
tree605fce9babea632395f03994a69af4e2670edea6 /src/plugins
parent82bf5e29062d37ae52c81252c6bcc9af6d3eb592 (diff)
downloadqt-creator-57cac11e2082c68b6e8b821e4bf6388a784cc2eb.tar.gz
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 <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/coreplugin/progressmanager/progressmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/coreplugin/progressmanager/progressmanager.cpp b/src/plugins/coreplugin/progressmanager/progressmanager.cpp
index bbf0f0b820..d822397b90 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();
}