mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 17:58:37 +12:00
For the Neko
This commit is contained in:
parent
eb80b7ec34
commit
225af34ce9
2 changed files with 5 additions and 1 deletions
|
@ -565,6 +565,7 @@ void game_list_frame::doubleClickedSlot(const QModelIndex& index)
|
||||||
{
|
{
|
||||||
LOG_SUCCESS(LOADER, "Boot from gamelist per doubleclick: done");
|
LOG_SUCCESS(LOADER, "Boot from gamelist per doubleclick: done");
|
||||||
RequestAddRecentGame(q_string_pair(qstr(Emu.GetBoot()), qstr("[" + m_game_data[i].info.serial + "] " + m_game_data[i].info.name)));
|
RequestAddRecentGame(q_string_pair(qstr(Emu.GetBoot()), qstr("[" + m_game_data[i].info.serial + "] " + m_game_data[i].info.name)));
|
||||||
|
Refresh(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -863,7 +864,7 @@ void game_list_frame::PopulateGameGrid(uint maxCols, const QSize& image_size, co
|
||||||
|
|
||||||
std::string selected_item = CurrentSelectionIconPath();
|
std::string selected_item = CurrentSelectionIconPath();
|
||||||
|
|
||||||
delete m_xgrid;
|
m_xgrid->deleteLater();
|
||||||
|
|
||||||
bool showText = m_Icon_Size_Str != GUI::gl_icon_key_small && m_Icon_Size_Str != GUI::gl_icon_key_tiny;
|
bool showText = m_Icon_Size_Str != GUI::gl_icon_key_small && m_Icon_Size_Str != GUI::gl_icon_key_tiny;
|
||||||
|
|
||||||
|
|
|
@ -243,6 +243,7 @@ void main_window::BootElf()
|
||||||
|
|
||||||
const std::string serial = Emu.GetTitleID().empty() ? "" : "[" + Emu.GetTitleID() + "] ";
|
const std::string serial = Emu.GetTitleID().empty() ? "" : "[" + Emu.GetTitleID() + "] ";
|
||||||
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), qstr(serial + Emu.GetTitle())));
|
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), qstr(serial + Emu.GetTitle())));
|
||||||
|
gameListFrame->Refresh(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -279,6 +280,7 @@ void main_window::BootGame()
|
||||||
|
|
||||||
const std::string serial = Emu.GetTitleID().empty() ? "" : "[" + Emu.GetTitleID() + "] ";
|
const std::string serial = Emu.GetTitleID().empty() ? "" : "[" + Emu.GetTitleID() + "] ";
|
||||||
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), qstr(serial + Emu.GetTitle())));
|
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), qstr(serial + Emu.GetTitle())));
|
||||||
|
gameListFrame->Refresh(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -794,6 +796,7 @@ void main_window::BootRecentAction(const QAction* act)
|
||||||
{
|
{
|
||||||
LOG_SUCCESS(LOADER, "Boot from Recent List: done");
|
LOG_SUCCESS(LOADER, "Boot from Recent List: done");
|
||||||
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), nam));
|
AddRecentAction(q_string_pair(qstr(Emu.GetBoot()), nam));
|
||||||
|
gameListFrame->Refresh(true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue