mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
Reenable Home and Audio/Video interactions
This commit is contained in:
parent
6561ddae41
commit
d11bb71a17
1 changed files with 2 additions and 9 deletions
|
@ -501,7 +501,7 @@ void game_list_frame::doubleClickedSlot(const QModelIndex& index)
|
||||||
QString category = qstr(m_game_data[i].info.category);
|
QString category = qstr(m_game_data[i].info.category);
|
||||||
|
|
||||||
// Boot these categories
|
// Boot these categories
|
||||||
if (category == category::hdd_Game || category == category::disc_Game || category == category::audio_Video)
|
if (category != category::game_Data)
|
||||||
{
|
{
|
||||||
const std::string& path = Emu.GetGameDir() + m_game_data[i].info.root;
|
const std::string& path = Emu.GetGameDir() + m_game_data[i].info.root;
|
||||||
RequestIconPathSet(path);
|
RequestIconPathSet(path);
|
||||||
|
@ -610,14 +610,7 @@ void game_list_frame::ShowSpecifiedContextMenu(const QPoint &pos, int row)
|
||||||
{
|
{
|
||||||
removeGame->setEnabled(false);
|
removeGame->setEnabled(false);
|
||||||
}
|
}
|
||||||
else if (category == category::audio_Video)
|
else if (category == category::game_Data)
|
||||||
{
|
|
||||||
configure->setEnabled(false);
|
|
||||||
removeConfig->setEnabled(false);
|
|
||||||
openConfig->setEnabled(false);
|
|
||||||
checkCompat->setEnabled(false);
|
|
||||||
}
|
|
||||||
else if (category == category::home || category == category::game_Data)
|
|
||||||
{
|
{
|
||||||
boot->setEnabled(false), f.setBold(false), boot->setFont(f);
|
boot->setEnabled(false), f.setBold(false), boot->setFont(f);
|
||||||
configure->setEnabled(false);
|
configure->setEnabled(false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue