diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2019-09-01 12:14:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-01 12:14:23 -0700 |
| commit | b0a5a9f7c5a9117c80a3cb987d2b53687fbd3e37 (patch) | |
| tree | b26f006c29068ab093304595db88f00ef18cb905 /Source/Core | |
| parent | 5ea4f998c09283c67e30925c066780e431ca9ef9 (diff) | |
| parent | a4f13ca57d9f3eee0ff49f449f339740299e4050 (diff) | |
Merge pull request #8342 from dreamsyntax/codeview-remove-double-space
DolphinQt: GeckoCodeWidget remove double space
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp index d9be9095ba..8ff6c0cb78 100644 --- a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp @@ -165,9 +165,11 @@ void GeckoCodeWidget::OnSelectionChanged() m_code_view->clear(); for (const auto& c : code.codes) - m_code_view->append(QStringLiteral("%1 %2") + { + m_code_view->append(QStringLiteral("%1 %2") .arg(c.address, 8, 16, QLatin1Char('0')) .arg(c.data, 8, 16, QLatin1Char('0'))); + } } void GeckoCodeWidget::OnItemChanged(QListWidgetItem* item) |
