mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
DolphinQt: Don't leave Export Recording disabled always
This commit is contained in:
parent
e73a3ba1c6
commit
7fcc3dd605
1 changed files with 4 additions and 0 deletions
|
@ -110,7 +110,10 @@ void MenuBar::OnEmulationStateChanged(Core::State state)
|
|||
// Movie
|
||||
m_recording_read_only->setEnabled(running);
|
||||
if (!running)
|
||||
{
|
||||
m_recording_stop->setEnabled(false);
|
||||
m_recording_export->setEnabled(false);
|
||||
}
|
||||
m_recording_play->setEnabled(!running);
|
||||
|
||||
// Options
|
||||
|
@ -1109,6 +1112,7 @@ void MenuBar::OnRecordingStatusChanged(bool recording)
|
|||
{
|
||||
m_recording_start->setEnabled(!recording);
|
||||
m_recording_stop->setEnabled(recording);
|
||||
m_recording_export->setEnabled(recording);
|
||||
}
|
||||
|
||||
void MenuBar::OnReadOnlyModeChanged(bool read_only)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue