Make it possible for show and hide multiple pictures at once

This commit is contained in:
Rafael 2016-10-27 11:24:26 +02:00
parent a86eab43ff
commit cc5813b273
8 changed files with 87 additions and 43 deletions

View file

@ -453,3 +453,19 @@ void UserInterface::on_actionSelect_GTA_Folder_triggered()
on_cmdReload_clicked();
}
}
void UserInterface::on_action_Enable_In_game_triggered()
{
if (profileOpen)
{
profileUI->enableSelected();
}
}
void UserInterface::on_action_Disable_In_game_triggered()
{
if (profileOpen)
{
profileUI->disableSelected();
}
}