diff --git a/apps/readest-app/src/app/reader/components/BooksGrid.tsx b/apps/readest-app/src/app/reader/components/BooksGrid.tsx index 1c410135..457edd8b 100644 --- a/apps/readest-app/src/app/reader/components/BooksGrid.tsx +++ b/apps/readest-app/src/app/reader/components/BooksGrid.tsx @@ -167,6 +167,7 @@ const BooksGrid: React.FC = ({ bookKeys, onCloseBook }) => { showDoubleBorder={viewSettings.vertical && viewSettings.doubleBorder} isScrolled={viewSettings.scrolled} isVertical={viewSettings.vertical} + isEink={viewSettings.isEink} horizontalGap={horizontalGapPercent} contentInsets={contentInsets} gridInsets={gridInsets} @@ -177,6 +178,7 @@ const BooksGrid: React.FC = ({ bookKeys, onCloseBook }) => { showDoubleBorder={viewSettings.vertical && viewSettings.doubleBorder} isScrolled={viewSettings.scrolled} isVertical={viewSettings.vertical} + isEink={viewSettings.isEink} horizontalGap={horizontalGapPercent} contentInsets={contentInsets} gridInsets={gridInsets} diff --git a/apps/readest-app/src/app/reader/components/HintInfo.tsx b/apps/readest-app/src/app/reader/components/HintInfo.tsx index 88b50914..38679232 100644 --- a/apps/readest-app/src/app/reader/components/HintInfo.tsx +++ b/apps/readest-app/src/app/reader/components/HintInfo.tsx @@ -10,6 +10,7 @@ interface SectionInfoProps { showDoubleBorder: boolean; isScrolled: boolean; isVertical: boolean; + isEink: boolean; horizontalGap: number; contentInsets: Insets; gridInsets: Insets; @@ -20,6 +21,7 @@ const HintInfo: React.FC = ({ showDoubleBorder, isScrolled, isVertical, + isEink, horizontalGap, contentInsets, gridInsets, @@ -94,7 +96,12 @@ const HintInfo: React.FC = ({ } } > -

+

{hintMessage || ''}

diff --git a/apps/readest-app/src/app/reader/components/ProgressInfo.tsx b/apps/readest-app/src/app/reader/components/ProgressInfo.tsx index 056f61dc..2411d854 100644 --- a/apps/readest-app/src/app/reader/components/ProgressInfo.tsx +++ b/apps/readest-app/src/app/reader/components/ProgressInfo.tsx @@ -38,6 +38,7 @@ const ProgressInfoView: React.FC = ({ const showDoubleBorder = viewSettings.vertical && viewSettings.doubleBorder; const isScrolled = viewSettings.scrolled; const isVertical = viewSettings.vertical; + const isEink = viewSettings.isEink; const { progressStyle: readingProgressStyle } = viewSettings; const template = @@ -72,8 +73,8 @@ const ProgressInfoView: React.FC = ({ return (
= ({ showDoubleBorder, isScrolled, isVertical, + isEink, horizontalGap, contentInsets, gridInsets, @@ -49,8 +51,8 @@ const SectionInfo: React.FC = ({ />