diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2016-02-17 20:43:49 +0200 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2016-02-24 13:04:21 +0000 |
commit | 80082e585c35f459e0a041006ee86a11e3875f5b (patch) | |
tree | cd7c300e4afdcb45ee939d0620ec71fdcf7978c3 /src/plugins/debugger/unstartedappwatcherdialog.cpp | |
parent | 15878d7f15d8010ecbfca5e239119bd5c44d7f7f (diff) | |
download | qt-creator-80082e585c35f459e0a041006ee86a11e3875f5b.tar.gz |
Debugger: Make executable path chooser wider
For the executable to be readable.
Change-Id: Iada62dd5c99b642f8f4938182f2c5e0b2141d34c
Reviewed-by: hjk <hjk@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/unstartedappwatcherdialog.cpp')
-rw-r--r-- | src/plugins/debugger/unstartedappwatcherdialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/unstartedappwatcherdialog.cpp b/src/plugins/debugger/unstartedappwatcherdialog.cpp index 763fba865f..b4ec07001b 100644 --- a/src/plugins/debugger/unstartedappwatcherdialog.cpp +++ b/src/plugins/debugger/unstartedappwatcherdialog.cpp @@ -106,6 +106,7 @@ UnstartedAppWatcherDialog::UnstartedAppWatcherDialog(QWidget *parent) m_pathChooser = new Utils::PathChooser(this); m_pathChooser->setExpectedKind(Utils::PathChooser::ExistingCommand); m_pathChooser->setHistoryCompleter(QLatin1String("LocalExecutable")); + m_pathChooser->setMinimumWidth(400); if (activeTarget) { if (RunConfiguration *runConfig = activeTarget->activeRunConfiguration()) { |