add warning when encounter slot total exceeds 8 bytes
This commit is contained in:
parent
6324980a8d
commit
a7e6dd9ebf
1 changed files with 6 additions and 2 deletions
|
@ -354,10 +354,14 @@ void Editor::configureEncounterJSON(QWidget *window) {
|
||||||
groupTotalMessage += QString("%1 (%2),\t").arg(groupTotals[key]).arg(key);
|
groupTotalMessage += QString("%1 (%2),\t").arg(groupTotals[key]).arg(key);
|
||||||
}
|
}
|
||||||
groupTotalMessage.chop(2);
|
groupTotalMessage.chop(2);
|
||||||
totalLabel->setText(groupTotalMessage);
|
|
||||||
} else {
|
} else {
|
||||||
totalLabel->setText(QString("Total: %1").arg(QString::number(total)));
|
groupTotalMessage = QString("Total: %1").arg(QString::number(total));
|
||||||
}
|
}
|
||||||
|
if (total > 0xFF) {
|
||||||
|
totalLabel->setTextFormat(Qt::RichText);
|
||||||
|
groupTotalMessage += QString("<font color=\"red\">\tWARNING: value exceeds the limit for a u8 variable.</font>");
|
||||||
|
}
|
||||||
|
totalLabel->setText(groupTotalMessage);
|
||||||
};
|
};
|
||||||
|
|
||||||
// lambda: Create a new "slot", which is the widget containing a spinner and an index label.
|
// lambda: Create a new "slot", which is the widget containing a spinner and an index label.
|
||||||
|
|
Loading…
Reference in a new issue