1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 04:32:35 +01:00

overlays: remove separators from send/recv dialogs

This commit is contained in:
Megamouse 2024-01-29 20:35:27 +01:00
parent 23dc6a44f6
commit a427783bac
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ namespace rsx
m_dim_background->set_size(virtual_width, virtual_height);
m_dim_background->back_color.a = 0.5f;
m_list = std::make_unique<list_view>(virtual_width - 2 * 20, 540, true, true);
m_list = std::make_unique<list_view>(virtual_width - 2 * 20, 540, false, true);
m_list->set_pos(20, 85);
m_description = std::make_unique<label>();

View File

@ -267,7 +267,7 @@ namespace rsx
status_flags |= status_bits::invalidate_image_cache;
}
m_list = std::make_unique<list_view>(virtual_width - 2 * 20, 540);
m_list = std::make_unique<list_view>(virtual_width - 2 * 20, 540, false);
m_list->set_pos(20, 85);
for (const std::string& name : m_entry_names)