* Added configuration item and support code to save the current
      state of the RxID button.  Requested by Larry Levesque, ka1vgm,
      who is creating BBS scripts using the Notifier to provide that
      service.
pull/2/head
David Freese 2009-11-28 08:06:25 -06:00
rodzic 1070537255
commit 69cb51295d
3 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -1386,6 +1386,7 @@ void cbTune(Fl_Widget *w, void *) {
void cbRSID(Fl_Widget *w, void *)
{
progdefaults.rsid = btnRSID->value();
progdefaults.changed = true;
restoreFocus();
}

Wyświetl plik

@ -41,7 +41,9 @@
ELEM_(bool, rsidWideSearch, "RSIDWIDESEARCH", \
"RSID detector searches the entire passband", \
false) \
ELEM_(bool, rsid, "", "", false) \
ELEM_(bool, rsid, "RECEIVERSID", \
"Enable Reed Soloman ID decoding", \
false) \
ELEM_(bool, TransmitRSid, "TRANSMITRSID", \
"Send RSID at beginning and end of transmission", \
false) \

Wyświetl plik

@ -487,6 +487,7 @@ int configuration::setDefaults()
btnFeldHellIdle->value(HellXmtIdle);
btnTxRSID->value(TransmitRSid);
btnRSID->value(rsid);
chkRSidWideSearch->value(rsidWideSearch);
chkSlowCpu->value(slowcpu);