RepositoryUpdateUIManager: Workaround for rendering of the repositary's names

on scales more than 150%.
This commit is contained in:
YuSanka 2024-06-21 16:21:54 +02:00
parent 0f4a5250f8
commit b176cc2357

View File

@ -134,9 +134,9 @@ void RepositoryUpdateUIManager::fill_grids()
add(bmp); add(bmp);
} }
add(new wxStaticText(m_parent, wxID_ANY, from_u8(entry.name))); add(new wxStaticText(m_parent, wxID_ANY, from_u8(entry.name) + " "));
add(new wxStaticText(m_parent, wxID_ANY, from_u8(entry.description))); add(new wxStaticText(m_parent, wxID_ANY, from_u8(entry.description) + " "));
} }
} }