summaryrefslogtreecommitdiff
path: root/instr-daemon.c
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2012-10-15 08:21:51 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2012-10-15 08:21:51 -0400
commit9241a81f454f8ad98207b7b88c5c0b9ec8852987 (patch)
treecd781dfcdf311b3392f4d79424b0450a4c0c12d0 /instr-daemon.c
parent68791fff3f9dce335821b87f5404803e488de85d (diff)
simplified the menu updating scheme
Diffstat (limited to 'instr-daemon.c')
-rw-r--r--instr-daemon.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/instr-daemon.c b/instr-daemon.c
index 7943ae1..ffd7153 100644
--- a/instr-daemon.c
+++ b/instr-daemon.c
@@ -345,11 +345,12 @@ static gboolean periodic_poll (void)
GPIB_check_for_device_clear_signal();
if (GPIB_check_for_messages(globals.Registers.gpib_buffer)) {
if (GPIB_handle_new_input(globals.Registers.gpib_buffer)) {
- // FIXME check_for_ctrl_mode_changes();
Parser_main(globals.Registers.gpib_buffer, 0, NULL, NULL);
}
}
GPIB_check_for_device_clear_signal();
+
+ Update_Main_Menu_If_Visible();
return TRUE;
}