| 449 | TableState(mgPos); |
| 450 | ui.macroGroup_table->setFold(table, Qi::group.fold[mg.name]); |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | void TriggerUi::VarEditUpdate(const Macro* macro) |
| 455 | { |
| 456 | if (!ItemCurrented()) return; |
| 457 | if (macro->script.size() > 32) |
| 458 | { |
| 459 | ui.var_edit->setText(QiFn::FoldText(macro->script, 32)); |
| 460 | ui.var_edit->setDisabled(true); |
| 461 | } |
| 462 | else |
nothing calls this directly
no test coverage detected