2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 09:05:14 +00:00

Allow non-lower template keys replacements.

This commit is contained in:
John Preston
2018-11-12 12:52:44 +04:00
parent 4ab0e693c1
commit 93b7a797d2
3 changed files with 22 additions and 17 deletions

View File

@@ -122,7 +122,7 @@ void Inner::prepareRow(Row &row) {
row.question.setText(st::autocompleteRowTitle, row.data.question);
row.keys.setText(
st::autocompleteRowKeys,
row.data.keys.join(qstr(", ")));
row.data.originalKeys.join(qstr(", ")));
row.answer.setText(st::autocompleteRowAnswer, row.data.value);
}