diff options
| author | Tannin <devnull@localhost> | 2014-02-22 19:22:12 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-02-22 19:22:12 +0100 |
| commit | 35fcf1c25b19b612771a2bc874df7631695e1457 (patch) | |
| tree | 4ffc726ffef793a7764d4440e2151b2db2e85bb2 /src/executableslist.cpp | |
| parent | bed3c08a6dd59332edff8f67c4423e56b39a9a09 (diff) | |
- made the indicator for drag&drop more visible
- message boxes can now be made to not (re-)activate the window
- executable names for starting from the command line are now case-insensitive
Diffstat (limited to 'src/executableslist.cpp')
| -rw-r--r-- | src/executableslist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/executableslist.cpp b/src/executableslist.cpp index c486a4ca..8f2da051 100644 --- a/src/executableslist.cpp +++ b/src/executableslist.cpp @@ -106,7 +106,7 @@ const Executable &ExecutablesList::find(const QString &title) const Executable &ExecutablesList::find(const QString &title) { for (std::vector<Executable>::iterator iter = m_Executables.begin(); iter != m_Executables.end(); ++iter) { - if (iter->m_Title == title) { + if (QString::compare(iter->m_Title, title, Qt::CaseInsensitive) == 0) { return *iter; } } |
