diff options
author | Martin Vilcans <martin@librador.com> | 2014-10-09 09:42:19 +0200 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2014-10-09 09:42:19 +0200 |
commit | 42122263807657061682e82c6699e089042f6a96 (patch) | |
tree | 2181aea333d3eec32b47e948ced65f9a97219619 | |
parent | 601e5119e79fd4f00fe0f2bc5ae4438e7574a9f6 (diff) | |
download | screenplain-42122263807657061682e82c6699e089042f6a96.tar.gz |
Keep parentheticals with next in PDF output
-rw-r--r-- | screenplain/export/pdf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/screenplain/export/pdf.py b/screenplain/export/pdf.py index 62653d5..dcad855 100644 --- a/screenplain/export/pdf.py +++ b/screenplain/export/pdf.py @@ -53,7 +53,8 @@ dialog_style = ParagraphStyle( ) parenthentical_style = ParagraphStyle( 'parenthentical', default_style, - leftIndent=13 * character_width + leftIndent=13 * character_width, + keepWithNext=1, ) action_style = ParagraphStyle( 'action', default_style, |