Skip to content

Commit

Permalink
Merge pull request dolphin-emu#8342 from dreamsyntax/codeview-remove-…
Browse files Browse the repository at this point in the history
…double-space

DolphinQt: GeckoCodeWidget remove double space
  • Loading branch information
Helios747 authored Sep 1, 2019
2 parents 5ea4f99 + a4f13ca commit b0a5a9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b0a5a9f

Please sign in to comment.