On 12/08/14 06:19, Michael Schwendt wrote:
Alternatively, you can also open the tkremind program with your favourite
text editor and edit it yourself to apply the changes you see in the patch
file. Lines in the patch file starting with '+' are to be added, lines
starting with '-' are to be deleted. Without the leading ±, of course.
The patch only adds two lines to a procedure called SetFonts later than
line 2922, so that will be easy to do with an editor, too.

Good, knowing that I was able to effect a considerable improvement [for me] in the calendar display:

# Adjust font defaults for screen size
proc SetFonts {} {
    global SetFontsWorked
    set h [winfo screenheight .]
    if {$h <= 1480} {
        # Small screen (maybe eeepc?)
        font configure TkDefaultFont -size 14
        font configure TkFixedFont -size 12
        font configure TkDefaultFont -weight bold
        font configure TkFixedFont -weight bold
}
    set SetFontsWorked 1
}

main



I had to change the line " if {$h <= 1480} { " for the changes to be recognized. I would have liked to change the color scheme too but could not get that tp work, perhaps with some more time spent reading the tcl.tk instructions.

Thanks for the help,

Bob

--
http://www.qrz.com/db/W2BOD
box10  Fedora-20/64bit Linux/XFCE

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to