From afefe03eadcb629e1d0588add979b77712cca2d9 Mon Sep 17 00:00:00 2001 From: borkro Date: Thu, 11 Jun 2026 16:09:15 +0200 Subject: [PATCH] fix/sourceDateHandler: change margin from using em units to ch units to correctly offset editor.rulers --- src/filesystems/qsys/sourceDateHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystems/qsys/sourceDateHandler.ts b/src/filesystems/qsys/sourceDateHandler.ts index 61ba1efae..f108311ac 100644 --- a/src/filesystems/qsys/sourceDateHandler.ts +++ b/src/filesystems/qsys/sourceDateHandler.ts @@ -11,7 +11,7 @@ const annotationDecoration = vscode.window.createTextEditorDecorationType({ textDecoration: `none`, fontWeight: `normal`, fontStyle: `normal`, - margin: `0 1em 0 0`, + margin: `0 1ch 0 0`, width: `7ch`, // Pull the decoration out of the document flow if we want to be scrollable },