mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Remove double space in GeckoCodeWidget code view
This commit is contained in:
parent
5ea4f998c0
commit
a4f13ca57d
1 changed files with 3 additions and 1 deletions
|
@ -165,9 +165,11 @@ void GeckoCodeWidget::OnSelectionChanged()
|
||||||
m_code_view->clear();
|
m_code_view->clear();
|
||||||
|
|
||||||
for (const auto& c : code.codes)
|
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.address, 8, 16, QLatin1Char('0'))
|
||||||
.arg(c.data, 8, 16, QLatin1Char('0')));
|
.arg(c.data, 8, 16, QLatin1Char('0')));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void GeckoCodeWidget::OnItemChanged(QListWidgetItem* item)
|
void GeckoCodeWidget::OnItemChanged(QListWidgetItem* item)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue