mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 13:36:48 +08:00
refs #634, fixes and improvements in selectors/completers
* upper case * get raw data from selector * sort completers
This commit is contained in:
@@ -158,8 +158,7 @@ namespace BlackGui
|
||||
{
|
||||
if (count > 0)
|
||||
{
|
||||
QStringList keysAndAliases(sGui->getWebDataServices()->getDistributors().getDbKeysAndAliases());
|
||||
keysAndAliases.sort(Qt::CaseInsensitive);
|
||||
const QStringList keysAndAliases(sGui->getWebDataServices()->getDistributors().getDbKeysAndAliases(true));
|
||||
QCompleter *c = new QCompleter(keysAndAliases, this);
|
||||
c->setCaseSensitivity(Qt::CaseInsensitive);
|
||||
c->setCompletionMode(QCompleter::PopupCompletion);
|
||||
|
||||
Reference in New Issue
Block a user