Qt/Hotkeys: Show OSD message when selecting slots
This commit is contained in:
parent
32382438be
commit
b5141ca6ce
|
@ -1014,6 +1014,10 @@ void MainWindow::SetStateSlot(int slot)
|
||||||
{
|
{
|
||||||
Settings::Instance().SetStateSlot(slot);
|
Settings::Instance().SetStateSlot(slot);
|
||||||
m_state_slot = slot;
|
m_state_slot = slot;
|
||||||
|
|
||||||
|
Core::DisplayMessage(StringFromFormat("Selected slot %d - %s", m_state_slot,
|
||||||
|
State::GetInfoStringOfSlot(m_state_slot, false).c_str()),
|
||||||
|
2500);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::PerformOnlineUpdate(const std::string& region)
|
void MainWindow::PerformOnlineUpdate(const std::string& region)
|
||||||
|
|
Loading…
Reference in New Issue