Add UI for toggling CirclePad Pro

This commit is contained in:
wheremyfoodat 2025-07-01 03:54:10 +03:00
parent 95b9f75ef9
commit 1aa6b571e8

View file

@ -168,6 +168,10 @@ ConfigWindow::ConfigWindow(ConfigCallback configCallback, MainWindowCallback win
}); });
genLayout->addRow(tr("System language"), systemLanguage); genLayout->addRow(tr("System language"), systemLanguage);
QCheckBox* circlePadProEnabled = new QCheckBox(tr("Enable CirclePad Pro"));
connectCheckbox(circlePadProEnabled, config.circlePadProEnabled);
genLayout->addRow(circlePadProEnabled);
QCheckBox* discordRpcEnabled = new QCheckBox(tr("Enable Discord RPC")); QCheckBox* discordRpcEnabled = new QCheckBox(tr("Enable Discord RPC"));
connectCheckbox(discordRpcEnabled, config.discordRpcEnabled); connectCheckbox(discordRpcEnabled, config.discordRpcEnabled);
genLayout->addRow(discordRpcEnabled); genLayout->addRow(discordRpcEnabled);