hello
i am writing a simple tcl script to keep my notes in, but
all fonts in my multiline text widget are jagged .... fonts look okay in other applications so its not my monitor.
i have tried lots of fonts and they are on my system.
here is the code i use.....
# window configure
. configure -background #facd8a
font create davesfont -family lucida -size 12 -weight normal
#
# text frame widgets
#
text .textframe.maintextbox \
-state normal \
-height 40 \
-width 80 \
-wrap none \
-font davesfont \
-background $entrycolor \
-foreground #0000FF \
-xscrollcommand ".textframe.h_scroll set" \
-yscrollcommand ".textframe.v_scroll set"
#
my question is .... am i missing a command or text widget property that enhances or smoothes fonts.... as i said, fonts look great in other applications.
or do i need to somehow embed fonts somewhere for use in tcl scripts?
i am on gnu/linux(debian)
thanks for any comments.
daveleo
i am writing a simple tcl script to keep my notes in, but
all fonts in my multiline text widget are jagged .... fonts look okay in other applications so its not my monitor.
i have tried lots of fonts and they are on my system.
here is the code i use.....
# window configure
. configure -background #facd8a
font create davesfont -family lucida -size 12 -weight normal
#
# text frame widgets
#
text .textframe.maintextbox \
-state normal \
-height 40 \
-width 80 \
-wrap none \
-font davesfont \
-background $entrycolor \
-foreground #0000FF \
-xscrollcommand ".textframe.h_scroll set" \
-yscrollcommand ".textframe.v_scroll set"
#
my question is .... am i missing a command or text widget property that enhances or smoothes fonts.... as i said, fonts look great in other applications.
or do i need to somehow embed fonts somewhere for use in tcl scripts?
i am on gnu/linux(debian)
thanks for any comments.
daveleo