Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DantSu committed Feb 23, 2024
1 parent 98456b6 commit 2bfbdef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###########################################################

TARGET=TelmiOS
VERSION=1.0.1
VERSION=1.0.2

###########################################################

Expand Down
10 changes: 6 additions & 4 deletions src/storyTeller/stories_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,12 @@ void stories_previous(void)

void stories_menu(void)
{
if(storiesDiplayMode == STORIES_DISPLAY_MODE_SINGLE) {
stories_setMode(STORIES_DISPLAY_MODE_TILES);
} else {
stories_setMode(STORIES_DISPLAY_MODE_SINGLE);
if(storyActionKey[0] == '\0') {
if(storiesDiplayMode == STORIES_DISPLAY_MODE_SINGLE) {
stories_setMode(STORIES_DISPLAY_MODE_TILES);
} else {
stories_setMode(STORIES_DISPLAY_MODE_SINGLE);
}
}
}

Expand Down

0 comments on commit 2bfbdef

Please sign in to comment.