Skip to content
Snippets Groups Projects
Commit 1567f472 authored by David Kaspar's avatar David Kaspar Committed by Tobias Hunger
Browse files

ProjectExplorer: Fixing style of read-only SysRootInformationConfigWidget


Style of read-only SysRootInformationConfigWidget and QmakeKitConfigWidget
was not matching.

SysRootInformationConfigWidget was using lineEdit.setReadOnly(true)
QmakeKitConfigWidget and even other *InformationConfigWidgets are
using lineEdit.setEnabled(false)

Therefore making SysRootInformationConfigWidget to use setEnabled(false)
too.

Change-Id: I637b7a7afe522b7a622975a1b37b2256a802ae1a
Reviewed-by: default avatarMehdi Fekari <mfekari@blackberry.com>
Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
parent a4aa2bc2
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ void SysRootInformationConfigWidget::refresh()
void SysRootInformationConfigWidget::makeReadOnly()
{
m_chooser->setReadOnly(true);
m_chooser->setEnabled(false);
}
QWidget *SysRootInformationConfigWidget::mainWidget() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment