File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 636
636
<property name =" placeholderText" >
637
637
<string />
638
638
</property >
639
+ <property name =" enabled" >
640
+ <bool >false</bool >
641
+ </property >
639
642
</widget >
640
643
</item >
641
644
</layout >
Original file line number Diff line number Diff line change @@ -677,6 +677,9 @@ void RPCConsole::setClientModel(ClientModel *model)
677
677
wordList.sort ();
678
678
autoCompleter = new QCompleter (wordList, this );
679
679
autoCompleter->setModelSorting (QCompleter::CaseSensitivelySortedModel);
680
+ // ui->lineEdit is initially disabled because running commands is only
681
+ // possible from now on.
682
+ ui->lineEdit ->setEnabled (true );
680
683
ui->lineEdit ->setCompleter (autoCompleter);
681
684
autoCompleter->popup ()->installEventFilter (this );
682
685
// Start thread to execute RPC commands.
You can’t perform that action at this time.
0 commit comments