X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=client%2Fmainwindow.cpp;fp=client%2Fmainwindow.cpp;h=d6d32008e73ba6f89f8ae8ea2dda007b18a278af;hb=c7d5ff85088aeab9d979bf7c7a261df963b722eb;hp=228fe6b2044435d4de924645e6dc6593e524af69;hpb=a64de5e1112be71ac6bcca755912c669f6d531f8;p=ultimatescore diff --git a/client/mainwindow.cpp b/client/mainwindow.cpp index 228fe6b..d6d3200 100644 --- a/client/mainwindow.cpp +++ b/client/mainwindow.cpp @@ -124,6 +124,7 @@ MainWindow::MainWindow(QWidget *parent) : connect(ui->set_and_show_comment_btn, &QPushButton::clicked, this, &MainWindow::set_and_show_comment_clicked); connect(ui->hide_comment_btn, &QPushButton::clicked, this, &MainWindow::hide_comment_clicked); connect(ui->set_and_show_autocomment_btn, &QPushButton::clicked, this, &MainWindow::set_and_show_autocomment_clicked); + connect(ui->autoshow_autocomment, &QCheckBox::stateChanged, this, &MainWindow::autocomment_update); connect(ui->show_lower_third_btn, &QPushButton::clicked, this, &MainWindow::show_lower_third_clicked); connect(ui->hide_lower_third_btn, &QPushButton::clicked, this, &MainWindow::hide_lower_third_clicked); @@ -333,6 +334,11 @@ void MainWindow::autocomment_update() } } ui->autocomment_edit->setText(QString::fromStdString(msg)); + + map param; + param["autocomment_on_clock_limit"] = ui->autoshow_autocomment->isChecked() ? "1" : "0"; + param["autocomment"] = msg; + ws->send_command("update " + serialize_as_json(param)); } void MainWindow::show_scorebug_clicked()