Skip to content

Commit

Permalink
Clear space behind 'Saved' text
Browse files Browse the repository at this point in the history
  • Loading branch information
iltis42 committed Dec 1, 2024
1 parent 3c4c9d3 commit e76e074
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/SetupMenuSelect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void SetupMenuSelect::display( int mode ){
egl->drawBox( 1,130,DISPLAY_W,40 );
egl->setPrintPos( 1, DISPLAY_H-30 );
egl->setColor( COLOR_WHITE );
egl->print(PROGMEM"Saved " );
egl->print(PROGMEM"Saved " );
}
if( mode == 1 )
delay(1000);
Expand Down
2 changes: 1 addition & 1 deletion main/SetupMenuValFloat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void SetupMenuValFloat::display( int mode ){
else if (mode == 1){ // save mode, do show only "Saved"true
y+=24;
egl->setPrintPos( 1, DISPLAY_H-7 );
egl->print(PROGMEM"Saved");
egl->print(PROGMEM"Saved ");
vTaskDelay(1000 / portTICK_PERIOD_MS);
}
}
Expand Down

0 comments on commit e76e074

Please sign in to comment.