mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
Fix buildbot (#2)
* more stuff * buildbot from dolphin-mpn-src to dolphin-mpn-advanced-src * Fix Netplay Traversal Error * Update linux.yml * Update macos.yml * Update linux.yml * fix linux buildbot * rename binary automatically to dolphin-mpn * Update Readme.md Co-authored-by: JosJuice <josjuice@gmail.com>
This commit is contained in:
parent
2b811d8272
commit
d6098f5499
11 changed files with 583 additions and 254 deletions
|
@ -507,12 +507,11 @@ void NetPlaySetupDialog::UpdateListBrowser()
|
|||
});
|
||||
|
||||
auto* hor_header = m_table_widget->horizontalHeader();
|
||||
|
||||
hor_header->setSectionResizeMode(0, QHeaderView::Stretch);
|
||||
hor_header->setSectionResizeMode(0, QHeaderView::Stretch);
|
||||
hor_header->setSectionResizeMode(1, QHeaderView::Stretch);
|
||||
hor_header->setSectionResizeMode(2, QHeaderView::Stretch);
|
||||
hor_header->setSectionResizeMode(2, QHeaderView::ResizeToContents);
|
||||
hor_header->setSectionResizeMode(3, QHeaderView::ResizeToContents);
|
||||
hor_header->setSectionResizeMode(4, QHeaderView::ResizeToContents);
|
||||
hor_header->setHighlightSections(false);
|
||||
|
||||
m_table_widget->setRowCount(session_count);
|
||||
|
@ -531,10 +530,10 @@ void NetPlaySetupDialog::UpdateListBrowser()
|
|||
for (const auto& item : {name, game_id, player_count, in_game})
|
||||
item->setFlags(enabled ? Qt::ItemIsEnabled | Qt::ItemIsSelectable : Qt::NoItemFlags);
|
||||
|
||||
m_table_widget->setItem(i, 1, name);
|
||||
m_table_widget->setItem(i, 2, game_id);
|
||||
m_table_widget->setItem(i, 3, player_count);
|
||||
m_table_widget->setItem(i, 4, in_game);
|
||||
m_table_widget->setItem(i, 0, name);
|
||||
m_table_widget->setItem(i, 1, game_id);
|
||||
m_table_widget->setItem(i, 2, player_count);
|
||||
m_table_widget->setItem(i, 3, in_game);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue