Bugfix: trigger source: accept "AC" and "ACL" for powerline trigger source.

merge-requests/1/head
Teuniz 2016-09-12 19:54:08 +02:00
rodzic 91855ad6ac
commit c1bc36846c
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -35,7 +35,7 @@
#define PROGRAM_NAME "DSRemote"
#define PROGRAM_VERSION "0.32_1608240949"
#define PROGRAM_VERSION "0.32_1609121952"
#define MAX_PATHLEN 4096

Wyświetl plik

@ -1347,8 +1347,8 @@ int UI_Mainwindow::get_device_settings()
else if(!strcmp(device->buf, "EXT5"))
{
devparms.triggeredgesource = 5;
}
else if(!strcmp(device->buf, "ACL"))
} // DS1000Z: "AC", DS6000: "ACL" !!
else if((!strcmp(device->buf, "AC")) || (!strcmp(device->buf, "ACL")))
{
devparms.triggeredgesource = 6;
}