mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-04 15:04:38 -04:00
Commands: implemented save commands button
This commit is contained in:
@@ -594,6 +594,10 @@ void MainWindow::savePresetSettings(Preset* preset, int tabIndex)
|
||||
preset->setLayout(saveState());
|
||||
}
|
||||
|
||||
void MainWindow::saveCommandSettings()
|
||||
{
|
||||
}
|
||||
|
||||
void MainWindow::createStatusBar()
|
||||
{
|
||||
QString qtVersionStr = QString("Qt %1 ").arg(QT_VERSION_STR);
|
||||
@@ -1019,6 +1023,12 @@ void MainWindow::on_commandOutput_clicked()
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::on_commandsSave_clicked()
|
||||
{
|
||||
saveCommandSettings();
|
||||
m_settings.save();
|
||||
}
|
||||
|
||||
void MainWindow::on_commandKeyboardConnect_toggled(bool checked)
|
||||
{
|
||||
qDebug("on_commandKeyboardConnect_toggled: %s", checked ? "true" : "false");
|
||||
|
||||
Reference in New Issue
Block a user