Skip to content
Snippets Groups Projects
Commit 89e64b5a authored by Christian Kandeler's avatar Christian Kandeler
Browse files

RemoteLinux: Set host name field to read-only for auto-detected devices.


It was disabled before, which prevents scrolling inside the line edit,
so that one cannot see the complete host name if it is wider than the
field.

Change-Id: Ic8bf7c5ed67efc8430be4b298811f348780fa7b6
Reviewed-by: default avatarTobias Hunger <tobias.hunger@nokia.com>
parent a832c61d
No related branches found
No related tags found
No related merge requests found
......@@ -219,7 +219,7 @@ void LinuxDeviceConfigurationsSettingsWidget::displayCurrent()
m_nameValidator->setDisplayName(current->displayName());
m_ui->timeoutSpinBox->setValue(sshParams.timeout);
m_ui->removeConfigButton->setEnabled(!current->isAutoDetected());
m_ui->hostLineEdit->setEnabled(!current->isAutoDetected());
m_ui->hostLineEdit->setReadOnly(current->isAutoDetected());
m_ui->sshPortSpinBox->setEnabled(!current->isAutoDetected());
fillInValues();
}
......
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