aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-04-25 13:08:18 +0200
committerhjk <hjk@qt.io>2018-04-25 13:57:30 +0000
commitd2a44be0ff5f49518f692fed384a0a5751b32420 (patch)
tree3eba4daee0ccbe54a1bfe22241084220356c2f95 /src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp
parentb252043d44371ccc624fe062b2da93012e86c4f0 (diff)
RemoteLinux: Fix custom runconfig executable path chooser
Change-Id: I9725151eb8496c9af58b9ae9f22de3aa2fd11165 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp')
-rw-r--r--src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp b/src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp
index 190fb867dcc..e542c6c8d25 100644
--- a/src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp
+++ b/src/plugins/remotelinux/remotelinuxcustomrunconfiguration.cpp
@@ -47,6 +47,8 @@ RemoteLinuxCustomRunConfiguration::RemoteLinuxCustomRunConfiguration(Target *tar
exeAspect->setSettingsKey("RemoteLinux.CustomRunConfig.RemoteExecutable");
exeAspect->setLabelText(tr("Remote Executable:"));
exeAspect->setExecutablePathStyle(OsTypeLinux);
+ exeAspect->setDisplayStyle(BaseStringAspect::LineEditDisplay);
+ exeAspect->setExpectedKind(PathChooser::Any);
addExtraAspect(exeAspect);
auto symbolsAspect = new SymbolFileAspect(this);