mirror of
https://github.com/1j01/textual-paint.git
synced 2025-01-09 00:28:08 +03:00
Make caseInsensitive a parameter
This commit is contained in:
parent
e1245aa9e9
commit
838fb5d540
@ -47,6 +47,7 @@ class FIGletFontWriter:
|
||||
codeTagCount: int = 0,
|
||||
hardBlank: str = "$",
|
||||
endMark: str = "@",
|
||||
caseInsensitive: bool = False
|
||||
):
|
||||
self.fontName = fontName
|
||||
self.figChars: dict[int, str] = figChars
|
||||
@ -62,7 +63,7 @@ class FIGletFontWriter:
|
||||
self.verticalLayout = verticalLayout
|
||||
self.hRule = [False] * 7
|
||||
self.vRule = [False] * 7
|
||||
self.caseInsensitive = False
|
||||
self.caseInsensitive = caseInsensitive
|
||||
|
||||
def getOldLayoutValue(self) -> int:
|
||||
val = 0
|
||||
|
Loading…
Reference in New Issue
Block a user