Skip to content

Commit

Permalink
etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Feb 9, 2021
1 parent f4ac36e commit 89cbc23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/lcd/dwin/e3v2/dwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1648,7 +1648,7 @@ void update_variable() {
}
}

const bool blink = (millis() / 1000) & 1, // Is this an odd second?
const bool blink = (millis() / 1000) & 1; // Is this an odd second?
_draw_axis_value(X_AXIS, 35, 459, blink);
_draw_axis_value(Y_AXIS, 120, 459, blink);
_draw_axis_value(Z_AXIS, 205, 459, blink);
Expand Down Expand Up @@ -1887,7 +1887,7 @@ void Draw_Status_Area(const bool with_update) {

DWIN_Draw_Rectangle(1, Line_Color, 0, 449, DWIN_WIDTH, 451);

const bool blink = (millis() / 1000) & 1, // Is this an odd second?
const bool blink = (millis() / 1000) & 1; // Is this an odd second?
DWIN_ICON_Show(ICON, ICON_MaxSpeedX, 10, 456); _draw_axis_value(X_AXIS, 35, 459, blink);
DWIN_ICON_Show(ICON, ICON_MaxSpeedY, 95, 456); _draw_axis_value(Y_AXIS, 120, 459, blink);
DWIN_ICON_Show(ICON, ICON_MaxSpeedZ, 180, 456); _draw_axis_value(Z_AXIS, 205, 459, blink);
Expand Down

0 comments on commit 89cbc23

Please sign in to comment.