Skip to content

Commit

Permalink
Show topmargin for non-bibles too if e-ink mode enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
tuomas2 committed Dec 26, 2024
1 parent 1c90e8c commit 85c1437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/bibleview-js/src/composables/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export function useConfig(documentType: Ref<BibleViewDocumentType>) {
const calculatedConfig = computed(() => {
let topOffset = appSettings.topOffset;
let topMargin = 0;
if (isBible.value) {
if (isBible.value || appSettings.monochromeMode) {
topMargin = config.topMargin * mmInPx;
topOffset += topMargin;
}
Expand Down

0 comments on commit 85c1437

Please sign in to comment.