mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 02:09:41 +00:00
Issue command passing through QLineInput
This commit is contained in:
parent
0310b1cddf
commit
7fce4bc8c4
3 changed files with 10 additions and 7 deletions
|
@ -144,6 +144,11 @@ void CSVWorld::InfoCreator::focus()
|
|||
mTopic->setFocus();
|
||||
}
|
||||
|
||||
void CSVWorld::InfoCreator::callReturnPressed()
|
||||
{
|
||||
emit inputReturnPressed();
|
||||
}
|
||||
|
||||
void CSVWorld::InfoCreator::topicChanged()
|
||||
{
|
||||
update();
|
||||
|
|
|
@ -56,6 +56,10 @@ namespace CSVWorld
|
|||
/// Focus main input widget
|
||||
void focus() override;
|
||||
|
||||
public slots:
|
||||
|
||||
void callReturnPressed();
|
||||
|
||||
private slots:
|
||||
|
||||
void topicChanged();
|
||||
|
|
|
@ -264,13 +264,7 @@ void CSVWorld::TableBottomBox::createRecordsDirectlyRequest(const std::string& i
|
|||
{
|
||||
creator->reset();
|
||||
creator->setText(id);
|
||||
|
||||
/*Default system of createRequest - TODO: Modify so that user doesn't see the edit box*/
|
||||
mCreator->toggleWidgets(true);
|
||||
mLayout->setCurrentWidget(mCreator);
|
||||
setVisible(true);
|
||||
mEditMode = EditMode_Creation;
|
||||
mCreator->focus();
|
||||
creator->callReturnPressed();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue