Skip to content

Commit

Permalink
Fix missing texts in tables
Browse files Browse the repository at this point in the history
  • Loading branch information
IonAgorria committed Apr 11, 2024
1 parent 4090990 commit ac9c9d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/UserInterface/PerimeterShellUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3489,7 +3489,7 @@ void CListBoxWindow::Clear()
updateScroller();
}
void CListBoxWindow::AddString(const std::string& cb,int nrow) {
AddLocalizedText(LocalizedText(cb, getLocale()));
AddLocalizedText(LocalizedText(cb, getLocale()), nrow);
}
void CListBoxWindow::AddLocalizedText(const LocalizedText& text, int nrow) {
m_pItem[nrow].m_data.emplace_back(text);
Expand Down

0 comments on commit ac9c9d3

Please sign in to comment.