mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-11 19:58:49 -05:00
Add change count to var tab tooltip
This commit is contained in:
committed by
WarmUpTill
parent
eec9244e4c
commit
7fa0ba3355
@@ -85,7 +85,8 @@ static QString formatLastChangedTooltip(Variable *variable)
|
||||
|
||||
QString tooltip = obs_module_text(
|
||||
"AdvSceneSwitcher.variableTab.lastChanged.tooltip");
|
||||
return tooltip.arg(QString::fromStdString(variable->GetPreviousValue()));
|
||||
return tooltip.arg(QString::number(variable->GetValueChangeCount()))
|
||||
.arg(QString::fromStdString(variable->GetPreviousValue()));
|
||||
}
|
||||
|
||||
static void addVariableRow(QTableWidget *table, Variable *variable)
|
||||
|
||||
Reference in New Issue
Block a user