Skip to content

Commit

Permalink
Remove double space in GeckoCodeWidget code view
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamsyntax committed Sep 1, 2019
1 parent 5ea4f99 commit a4f13ca
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 a4f13ca

Please sign in to comment.