Browse Source

Include indicator for new drawmenu_generic

In the new method we pass the character that should be used for
selected state, not the character to print always.
Scott Lahteine 9 years ago
parent
commit
90ba61b9b8
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/ultralcd_implementation_hitachi_HD44780.h

+ 2
- 2
Marlin/ultralcd_implementation_hitachi_HD44780.h View File

@@ -706,8 +706,8 @@ static void lcd_implementation_drawmenu_sddirectory(bool sel, uint8_t row, const
706 706
 }
707 707
 #define lcd_implementation_drawmenu_back(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, LCD_STR_UPLEVEL[0], LCD_STR_UPLEVEL[0])
708 708
 #define lcd_implementation_drawmenu_submenu(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
709
-#define lcd_implementation_drawmenu_gcode(sel, row, pstr, gcode) lcd_implementation_drawmenu_generic(sel, row, pstr, ' ', ' ')
710
-#define lcd_implementation_drawmenu_function(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, ' ', ' ')
709
+#define lcd_implementation_drawmenu_gcode(sel, row, pstr, gcode) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
710
+#define lcd_implementation_drawmenu_function(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
711 711
 
712 712
 static void lcd_implementation_quick_feedback()
713 713
 {

Loading…
Cancel
Save