Work in progress.

merge-requests/1/head
Teuniz 2015-06-16 18:45:16 +02:00
rodzic 1cad5f3738
commit b112ee5add
2 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -31,7 +31,7 @@
#define PROGRAM_NAME "DSRemote"
#define PROGRAM_VERSION "0.11_1506161158"
#define PROGRAM_VERSION "0.11_1506161844"
#define MAX_PATHLEN 4096

Wyświetl plik

@ -2070,6 +2070,13 @@ void UI_Mainwindow::clearButtonClicked()
void UI_Mainwindow::autoButtonClicked()
{
if((device == NULL) || (!devparms.connected))
{
return;
}
scrn_timer->stop();
statusLabel->setText("Auto settings");
tmcdev_write(device, ":AUT");
@ -2083,6 +2090,8 @@ void UI_Mainwindow::autoButtonClicked()
sleep(2);
get_device_settings();
scrn_timer->start(SCREEN_TIMER_IVAL);
}