Skip to content

Commit

Permalink
Make words double-clickable
Browse files Browse the repository at this point in the history
* Reduce the number of points so that the tables don't break
  • Loading branch information
ploth committed Sep 6, 2018
1 parent 64d6514 commit 35aea3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/dict.cc.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ def print_header(from_lang, to_lang):


def print_translation(input_word, output_word):
print(u"{}{}{}".format(input_word,
"."*(LINE_LENGTH-len(input_word)),
# Two points less for the spaces, so tables don't break
print(u"{} {} {}".format(input_word,
"."*(LINE_LENGTH-len(input_word)-2),
output_word))


Expand Down

0 comments on commit 35aea3b

Please sign in to comment.