From ed810d23e69827f20630432ac1280f7ef445357c Mon Sep 17 00:00:00 2001 From: NeoTheFox Date: Sun, 8 Mar 2015 02:10:33 +0300 Subject: [PATCH] UI tweaks --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 98d9eaa..f785dc3 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -605,7 +605,7 @@ void MainWindow::on_sendBtn_clicked() sending = false; injectCommand("M24"); injectCommand("M27"); - ui->sendBtn->setText("Send"); + ui->sendBtn->setText("Start"); ui->pauseBtn->setText("Pause"); if(autolock) ui->controlBox->setChecked(true); paused = false; @@ -898,7 +898,7 @@ void MainWindow::sendEEPROMsettings(QStringList changes) { userCommands.clear(); foreach (QString str, changes) { - sendLine(str); + injectCommand(str); //printMsg(str); } }