Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move Screen Fixes #19426

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update ui_480x320.cpp
  • Loading branch information
thinkyhead authored Sep 25, 2020
commit 3d281ab6e2b988e0416c71c07f4892f4472c3f25
2 changes: 1 addition & 1 deletion Marlin/src/lcd/tft/ui_480x320.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ static void drawBtn(int x, int y, const char* label, int32_t data, MarlinImage i
tft.set_background(COLOR_BACKGROUND);
tft.add_image(0, 0, imgBtn52Rounded, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY);

//TODO: would be great to add_text support font
// TODO: Make an add_text() taking a font arg
if (label != NULL) {
tft_string.set(label);
tft_string.trim();
Expand Down