diff options
| author | Glenn Smith <glenn@vector35.com> | 2024-04-11 16:24:47 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2024-04-11 16:24:47 -0400 |
| commit | 6661609598076636391651115793864291319845 (patch) | |
| tree | cff6c1a933b8d3209019e495d3d32e4d9ad87d61 /python/types.py | |
| parent | 3394019790216360933090478665025216727891 (diff) | |
Change default paddingCols value to 64
80 would have made sense if it were characters, but blocks of 0x50 bytes just look plain weird
Diffstat (limited to 'python/types.py')
| -rw-r--r-- | python/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
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']: """ |
