Merge pull request #936 from Perlence/fix/extension-editor-padding-x

fix(coding-agent): propagate paddingX to custom editors
This commit is contained in:
Mario Zechner 2026-01-24 20:48:41 +01:00 committed by GitHub
commit 79ded84d46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View file

@ -62,4 +62,7 @@ export interface EditorComponent extends Component {
/** Border color function */
borderColor?: (str: string) => string;
/** Set horizontal padding */
setPaddingX?(padding: number): void;
}