diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-11-03 14:16:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-03 14:16:59 +0100 |
| commit | 9e4590b2b28126c69a4d5562a8f9a65edb2a97bc (patch) | |
| tree | 817ee61328bea62ec892dc5389d6fd4a02226f3c /Source | |
| parent | a58df9fe3dfd7771d0641ef93f3145f26737b6e2 (diff) | |
| parent | 7253c4bb528aeda6787cc02d56d4e298c864fb13 (diff) | |
Merge pull request #6160 from JosJuice/gecko-na
Don't show "N/A" as description when there is no Gecko code
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt2/Config/GeckoCodeWidget.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt2/Config/GeckoCodeWidget.cpp b/Source/Core/DolphinQt2/Config/GeckoCodeWidget.cpp index ddb31b138b..0b04439e92 100644 --- a/Source/Core/DolphinQt2/Config/GeckoCodeWidget.cpp +++ b/Source/Core/DolphinQt2/Config/GeckoCodeWidget.cpp @@ -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)); |
