diff options
author | Ralph Amissah <ralph@amissah.com> | 2010-10-13 10:30:46 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2010-10-13 10:30:58 -0400 |
commit | 406eed70e10a8414fd18b9c5c8a260673bb344c5 (patch) | |
tree | 782d4e2b561c9b69e88896b07624ef9a7b023fb4 /lib | |
parent | CHANGELOG v2, on requested changes & open 2.7.7 (diff) |
texpdf, first space following a bullet should be fixed width, fix
(requested fix and suggested solution, Ben Armstrong)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sisu/v2/texpdf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sisu/v2/texpdf.rb b/lib/sisu/v2/texpdf.rb index 32b0d2ff..144ee67a 100644 --- a/lib/sisu/v2/texpdf.rb +++ b/lib/sisu/v2/texpdf.rb @@ -343,7 +343,7 @@ module SiSU_TeX end if dob.is=='para' \ and dob.bullet_ - dob.tmp='$\txtbullet$~~' + dob.tmp + dob.tmp='$\txtbullet$\hspace{\enspace}' + dob.tmp end elsif dob.is =='break' if dob.obj==Mx[:br_page]; dob.tmp='\newpage' |