mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-20 01:15:08 -05: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