Skip to content

Commit

Permalink
Fix the marlin_fullscreen parameter in config.ini doesn't work. (bigt…
Browse files Browse the repository at this point in the history
…reetech#716)

Fix the marlin_fullscreen parameter in config.ini doesn't work.
  • Loading branch information
Uz45 authored May 27, 2020
1 parent caea408 commit 7634bbb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions TFT/src/User/API/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,11 @@ void parseConfigKey(u16 index)
case C_INDEX_MARLIN_SHOW_TITLE:
infoSettings.marlin_mode_showtitle = getOnOff();
break;


case C_INDEX_MARLIN_FULLSCREEN:
infoSettings.marlin_mode_fullscreen = getOnOff();
break;

case C_INDEX_MARLIN_TITLE:
{
char * pchr;
Expand All @@ -495,7 +499,7 @@ void parseConfigKey(u16 index)
strcpy(configStringsStore->marlin_title, pchr);
}
break;

#endif //ST7920_SPI

//---------------------------------------------------------Printer / Machine Settings
Expand Down

0 comments on commit 7634bbb

Please sign in to comment.