Merge pull request #6160 from JosJuice/gecko-na

Don't show "N/A" as description when there is no Gecko code
This commit is contained in:
Leo Lam 2017-11-03 14:16:59 +01:00 committed by GitHub
commit 9e4590b2b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -118,9 +118,6 @@ void GeckoCodeWidget::OnSelectionChanged()
m_code_description->clear();
if (code.notes.empty())
m_code_description->append(tr("N/A"));
for (const auto& line : code.notes)
m_code_description->append(QString::fromStdString(line));