From 85c143788922bbb606a0c748640c01535e26512c Mon Sep 17 00:00:00 2001 From: Tuomas Airaksinen Date: Thu, 26 Dec 2024 19:56:10 +0200 Subject: [PATCH] Show topmargin for non-bibles too if e-ink mode enabled --- app/bibleview-js/src/composables/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bibleview-js/src/composables/config.ts b/app/bibleview-js/src/composables/config.ts index 4e0dc5cc42..9407cbced6 100644 --- a/app/bibleview-js/src/composables/config.ts +++ b/app/bibleview-js/src/composables/config.ts @@ -204,7 +204,7 @@ export function useConfig(documentType: Ref) { const calculatedConfig = computed(() => { let topOffset = appSettings.topOffset; let topMargin = 0; - if (isBible.value) { + if (isBible.value || appSettings.monochromeMode) { topMargin = config.topMargin * mmInPx; topOffset += topMargin; }