RemoteLinux: Make paths in run config labels selectable.

Change-Id: I19859300c8c070d6088010199d0271f2feac20cc
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
Christian Kandeler
2015-06-16 12:23:39 +02:00
parent ba82f9a518
commit 41ea69248c

View File

@@ -55,6 +55,9 @@ public:
RemoteLinuxRunConfigurationWidgetPrivate(RemoteLinuxRunConfiguration *runConfig)
: runConfiguration(runConfig), ignoreChange(false)
{
const auto selectable = Qt::TextSelectableByKeyboard | Qt::TextSelectableByMouse;
localExecutableLabel.setTextInteractionFlags(selectable);
remoteExecutableLabel.setTextInteractionFlags(selectable);
}
RemoteLinuxRunConfiguration * const runConfiguration;