mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 21:45:32 +00:00
Disable topics list visually when in a choice
This commit is contained in:
parent
e9ed0211c9
commit
7c52d05f85
1 changed files with 5 additions and 7 deletions
|
@ -562,12 +562,11 @@ namespace MWGui
|
|||
|
||||
MyGUI::Button* byeButton;
|
||||
getWidget(byeButton, "ByeButton");
|
||||
if(MWBase::Environment::get().getDialogueManager()->isInChoice() && !mGoodbye) {
|
||||
byeButton->setEnabled(false);
|
||||
}
|
||||
else {
|
||||
byeButton->setEnabled(true);
|
||||
}
|
||||
bool goodbyeEnabled = !MWBase::Environment::get().getDialogueManager()->isInChoice() || mGoodbye;
|
||||
byeButton->setEnabled(goodbyeEnabled);
|
||||
|
||||
bool topicsEnabled = !MWBase::Environment::get().getDialogueManager()->isInChoice() && !mGoodbye;
|
||||
mTopicsList->setEnabled(topicsEnabled);
|
||||
}
|
||||
|
||||
void DialogueWindow::notifyLinkClicked (TypesetBook::InteractiveId link)
|
||||
|
@ -657,7 +656,6 @@ namespace MWGui
|
|||
{
|
||||
mLinks.push_back(new Goodbye());
|
||||
mGoodbye = true;
|
||||
mTopicsList->setEnabled(false);
|
||||
mEnabled = false;
|
||||
updateHistory();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue