mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Qt: Implement Batch flag (-b)
This commit is contained in:
@ -416,3 +416,12 @@ bool Settings::AreWidgetsLocked() const
|
||||
{
|
||||
return GetQSettings().value(QStringLiteral("widgets/locked"), true).toBool();
|
||||
}
|
||||
|
||||
bool Settings::IsBatchModeEnabled() const
|
||||
{
|
||||
return m_batch;
|
||||
}
|
||||
void Settings::SetBatchModeEnabled(bool batch)
|
||||
{
|
||||
m_batch = batch;
|
||||
}
|
||||
|
Reference in New Issue
Block a user