View Single Post
Old 24th April 2008, 05:49 AM   #3
Andy
Administrator
Professional user
 
Andy's Avatar
 
Join Date: Jun 2003
Posts: 4,565
Default Re: Font size in the Object Properties Editor

I'm in the mood for a quick hack .

Edit tcl/acobject.tcl and look for this about 2/3 of the way in:

Code:
 
set UI(prop_object_data) [ text $w.object_data -width 40 -height 5 \
-yscrollcommand "$w.ys set" \
-xscrollcommand "$w.xs set" \
-wrap none -padx 4 -pady 4 \
-exportselection true ]
at the end, add '-font {TImes 20}' before the ']'

Code:
 
set UI(prop_object_data) [ text $w.object_data -width 40 -height 5 \
-yscrollcommand "$w.ys set" \
-xscrollcommand "$w.xs set" \
-wrap none -padx 4 -pady 4 \
-exportselection true -font {Times 20} ]
Andy is offline   Reply With Quote