mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 17:25:13 +03:00
Cosmetics
This commit is contained in:
parent
da0b422dce
commit
318fc79dfe
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ def addLine(filename, newline, after):
|
|||
|
||||
def modifyTranslations(constant, translation, after):
|
||||
for filename in glob.glob('translations/*.h.txt'):
|
||||
newline = "#define " + constant + " "*(23-len(constant)) + '"' + translation + '"'
|
||||
newline = "#define " + constant + " "*max(1, 23-len(constant)) + '"' + translation + '"'
|
||||
addLine(filename, newline, after+" ")
|
||||
|
||||
def modifyDeclaration(constant, after):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue