From 3d3e8cff17acdf7b0c89f4e12ee6c912f482dc76 Mon Sep 17 00:00:00 2001 From: Peter Fajdiga Date: Sun, 7 Jul 2024 23:24:23 +0200 Subject: [PATCH] config: adjust default gaps --- src/lib/config/definition.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/config/definition.ts b/src/lib/config/definition.ts index 935a3c6..5817e14 100644 --- a/src/lib/config/definition.ts +++ b/src/lib/config/definition.ts @@ -66,32 +66,32 @@ const configDef = [ { name: "gapsOuterTop", type: "UInt", - default: 18, + default: 16, }, { name: "gapsOuterBottom", type: "UInt", - default: 18, + default: 16, }, { name: "gapsOuterLeft", type: "UInt", - default: 18, + default: 16, }, { name: "gapsOuterRight", type: "UInt", - default: 18, + default: 16, }, { name: "gapsInnerHorizontal", type: "UInt", - default: 18, + default: 8, }, { name: "gapsInnerVertical", type: "UInt", - default: 18, + default: 8, }, { name: "manualScrollStep",