update
This commit is contained in:
parent
9bea762349
commit
22e0dffd1d
|
@ -85,7 +85,9 @@ void TranslateUI::present_solution_customs(std::shared_ptr<TranslateBasic> ins,
|
||||||
|
|
||||||
auto ruleset = ins->customRules();
|
auto ruleset = ins->customRules();
|
||||||
for (auto rule_name : ruleset.keys()) {
|
for (auto rule_name : ruleset.keys()) {
|
||||||
model->appendRow(new QStandardItem(rule_name));
|
auto cell = new QStandardItem(rule_name);
|
||||||
|
cell->setEditable(false);
|
||||||
|
model->appendRow(cell);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue