Skip to content

Commit

Permalink
guijrnl: fixed spacing for iwd and bg1
Browse files Browse the repository at this point in the history
  • Loading branch information
lynxlynxlynx committed Oct 17, 2014
1 parent 78efa9c commit a30078b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gemrb/GUIScripts/bg1/GUIJRNL.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def UpdateJournalWindow ():
GemRB.SetToken("YEAR",year)
#Text.Append ("[color=FFFF00]"+GemRB.GetString(15980)+"[/color]", 3*i)
Text.Append (GemRB.GetString(15980) + "\n", 3*i)
Text.Append ("\n" + GemRB.GetString(je['Text']) + "\n", 3*i + 1)
Text.Append (GemRB.GetString(je['Text']) + "\n\n", 3*i + 1)
Text.Append ("", 3*i + 2)


Expand Down
4 changes: 2 additions & 2 deletions gemrb/GUIScripts/iwd/GUIJRNL.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ def UpdateJournalWindow ():
GemRB.SetToken("HOUR",str(hours%24 ) )
GemRB.SetVar("DAYANDMONTH",dayandmonth)
GemRB.SetToken("YEAR",year)
Text.Append (GemRB.GetString(15980), 3*i)
Text.Append (GemRB.GetString(15980) + "\n", 3*i)

Text.Append (je['Text'], 3*i + 1)
Text.Append (GemRB.GetString(je['Text']) + "\n\n", 3*i + 1)
Text.Append ("", 3*i + 2)


Expand Down

0 comments on commit a30078b

Please sign in to comment.