Skip to content

Commit

Permalink
Merge PR book-readers#8 for improve orca compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
juanma1980 committed Jun 28, 2024
1 parent ab84e73 commit 49e4a2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ebook-speaker.c
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ void view_screen (misc_t *misc, daisy_t *daisy)
if (l / 2 * 2 == l)
waddstr (misc->screenwin, " ");
for (x = l; x < 56; x += 2)
waddstr (misc->screenwin, " .");
waddstr (misc->screenwin, " ");
if (daisy[i].page_number)
{
mvwprintw (misc->screenwin, daisy[i].y, 63,
Expand Down Expand Up @@ -2926,8 +2926,8 @@ int main (int argc, char *argv[])
noecho ();
misc.player_pid = -2;
sprintf (misc.scan_resolution, "400");
snprintf (misc.copyright, MAX_STR - 1, "%s %s - (C)2021 J. Lemmens",
gettext ("eBook-speaker - Version"), PACKAGE_VERSION);
snprintf (misc.copyright, MAX_STR - 1, "%s ",
gettext ("eBook-speaker "));
wattron (misc.titlewin, A_BOLD);
wprintw (misc.titlewin, "%s - %s", misc.copyright,
gettext ("Please wait..."));
Expand Down

0 comments on commit 49e4a2c

Please sign in to comment.