Skip to content

Commit

Permalink
LCD conditionals followup (#19766)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjasonsmith authored Oct 16, 2020
1 parent 418b3e5 commit 050ba0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/inc/Conditionals_post.h
Original file line number Diff line number Diff line change
Expand Up @@ -2614,14 +2614,14 @@
#if HAS_MARLINUI_U8GLIB
#define LCD_WIDTH 21
#else
#define LCD_WIDTH TERN(ULTIPANEL, 20, 16)
#define LCD_WIDTH TERN(IS_ULTIPANEL, 20, 16)
#endif
#endif
#ifndef LCD_HEIGHT
#if HAS_MARLINUI_U8GLIB
#define LCD_HEIGHT 5
#else
#define LCD_HEIGHT TERN(ULTIPANEL, 4, 2)
#define LCD_HEIGHT TERN(IS_ULTIPANEL, 4, 2)
#endif
#endif
#endif
Expand Down

0 comments on commit 050ba0e

Please sign in to comment.