replace all nbsp in previews (#142)

This commit is contained in:
2020-04-18 16:51:52 +03:00
parent e525cb4742
commit 55319521b2
4 changed files with 6 additions and 4 deletions

View File

@ -340,7 +340,8 @@ QString AWKeys::parsePattern(QString _pattern) const
// main keys
for (auto &key : m_foundKeys)
_pattern.replace(QString("$%1").arg(key), m_aggregator->formatter(m_values[key], key, true));
_pattern.replace(QString("$%1").arg(key),
m_aggregator->formatter(m_values[key], key, true));
// bars
for (auto &bar : m_foundBars) {