forked from Lainports/freebsd-ports
with the Gnome desktop. The program is under development, and currently supports the CQ WW, CQ WPX, and ARRL DX contests, plus Field Day. Features include on-the-fly dupe checking, CW and voice message keying, super check partial, packet (Telnet and rf nodes), networking, and radio control (currently for the FT-1000 only). The program is designed to be used by U.S. stations, with some support for Canadian stations. New features and contests are being added regularly, and I will consider adding support for DX stations if there is sufficient demand. (The port version has bug fixes and some modifications for Canadian stations. - db) Submitted by: self
15 lines
442 B
C
15 lines
442 B
C
--- fields.c.orig 2007-09-10 10:57:01.000000000 -0400
|
|
+++ fields.c 2007-11-22 19:53:19.000000000 -0500
|
|
@@ -1418,6 +1418,12 @@
|
|
gint cyan_bar_color, text_color;
|
|
gchar str_hold[81];
|
|
|
|
+ /* If esk->ikey is nul shunt it off here. I saw it happen - db VA3DB */
|
|
+ if (esd->ikey == '\0')
|
|
+ {
|
|
+ play_bells (BELL_SOUND);
|
|
+ return;
|
|
+ }
|
|
beep = 1;
|
|
ccol = *esd->cursor_colp-esd->field_col;
|
|
lflp = strlen(esd->field_linep);
|