diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2013-10-02 09:34:39 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2013-10-02 09:34:39 -0400 |
commit | 4f2926c5b5f396200ea5cc521ba1d2f622de5119 (patch) | |
tree | 9e0f29e638612bd8a98eaff0d6dfdd57a7c6b04b /menus.c | |
parent | 1f0814b74a8bb2a7554606a407620185819b08f6 (diff) |
don't show plus sign on delay if min_delay > 0
Diffstat (limited to 'menus.c')
-rw-r--r-- | menus.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1083,7 +1083,11 @@ static void Display_Number_on_LCD(int Is_Item_Visible,int LCD_row,int LCD_col,ch case Show_delay: Submenu_Value=globals.ChannelState[channel].delay; units = g_strdup("s"); - show_plus_sign=YES; + if (globals.Flash.min_delay[channel] > 0.0) { + show_plus_sign=NO; + } else { + show_plus_sign=YES; + } break; case Show_pw: |