diff options
author | Nick White <git@njw.name> | 2015-05-21 11:03:43 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2015-05-21 11:03:43 +0100 |
commit | 55c3c58564dedc20ba86a55eaa7a60f831875bb4 (patch) | |
tree | 22a69e70cd96fccebb04218b54d851dbb4497c99 | |
parent | ed3f5476c718ff469211a4b73751c32677caa1b4 (diff) | |
download | tkread-55c3c58564dedc20ba86a55eaa7a60f831875bb4.tar.bz2 tkread-55c3c58564dedc20ba86a55eaa7a60f831875bb4.zip |
Align images to baseline
-rwxr-xr-x | tkread | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -164,7 +164,7 @@ proc markup {widget} { set localfile [file tail $src] if [file exists $localfile] { set curimg [image create photo -file $localfile] - $widget image create $insertion -image $curimg + $widget image create $insertion -image $curimg -align baseline set cur $insertion } else { $widget insert $insertion $alt |