mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 22:42:14 -07:00
fix
This commit is contained in:
parent
cfbe59868b
commit
a4f55362c9
1 changed files with 4 additions and 2 deletions
|
|
@ -1688,8 +1688,6 @@ void TabGame::createMessageDock(bool bReplay)
|
|||
connect(messageLog, &MessageLogWidget::showCardInfoPopup, this, &TabGame::showCardInfoPopup);
|
||||
connect(messageLog, &MessageLogWidget::deleteCardInfoPopup, this, &TabGame::deleteCardInfoPopup);
|
||||
|
||||
messageLogLayout->addWidget(messageLog);
|
||||
|
||||
if (!bReplay) {
|
||||
connect(messageLog, &MessageLogWidget::openMessageDialog, this, &TabGame::openMessageDialog);
|
||||
connect(messageLog, &MessageLogWidget::addMentionTag, this, &TabGame::addMentionTag);
|
||||
|
|
@ -1704,7 +1702,11 @@ void TabGame::createMessageDock(bool bReplay)
|
|||
gameTimer->start();
|
||||
|
||||
messageLogLayout->addWidget(timeElapsedLabel);
|
||||
}
|
||||
|
||||
messageLogLayout->addWidget(messageLog);
|
||||
|
||||
if (!bReplay) {
|
||||
sayLabel = new QLabel;
|
||||
sayEdit = new LineEditCompleter;
|
||||
sayEdit->setMaxLength(MAX_TEXT_LENGTH);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue