From 6661609598076636391651115793864291319845 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Thu, 11 Apr 2024 16:24:47 -0400 Subject: Change default paddingCols value to 64 80 would have made sense if it were characters, but blocks of 0x50 bytes just look plain weird --- python/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/types.py') diff --git a/python/types.py b/python/types.py index e08bc796..945b88be 100644 --- a/python/types.py +++ b/python/types.py @@ -2005,7 +2005,7 @@ class Type: return result def get_lines( - self, bv: Union['binaryview.BinaryView', 'typecontainer.TypeContainer'], name: str, padding_cols: int = 80, collapsed: bool = False, + self, bv: Union['binaryview.BinaryView', 'typecontainer.TypeContainer'], name: str, padding_cols: int = 64, collapsed: bool = False, escaping: TokenEscapingType = TokenEscapingType.NoTokenEscapingType ) -> List['TypeDefinitionLine']: """ -- cgit v1.3.1