mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Merge #9500: [Qt][RPC] Autocomplete commands for 'help' command in debug console
6d8fe35
'help' rpc commands autocomplete (Andrew Chow)
Tree-SHA512: 289bc4fa16a1c0291262998caa18556f1c5aa89662c85528606dc03b596b8833a0fb2c5c9c068b6dcf2adb3a136d4f154591d4a95b8c3313638b77355aaed955
This commit is contained in:
parent
07e0567dcc
commit
96a5f5730b
@ -658,9 +658,12 @@ void RPCConsole::setClientModel(ClientModel *model)
|
|||||||
for (size_t i = 0; i < commandList.size(); ++i)
|
for (size_t i = 0; i < commandList.size(); ++i)
|
||||||
{
|
{
|
||||||
wordList << commandList[i].c_str();
|
wordList << commandList[i].c_str();
|
||||||
|
wordList << ("help " + commandList[i]).c_str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wordList.sort();
|
||||||
autoCompleter = new QCompleter(wordList, this);
|
autoCompleter = new QCompleter(wordList, this);
|
||||||
|
autoCompleter->setModelSorting(QCompleter::CaseSensitivelySortedModel);
|
||||||
ui->lineEdit->setCompleter(autoCompleter);
|
ui->lineEdit->setCompleter(autoCompleter);
|
||||||
autoCompleter->popup()->installEventFilter(this);
|
autoCompleter->popup()->installEventFilter(this);
|
||||||
// Start thread to execute RPC commands.
|
// Start thread to execute RPC commands.
|
||||||
|
Loading…
Reference in New Issue
Block a user