Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Statusbar font size #463

Closed
chrisw-thomas opened this issue Jun 2, 2018 · 2 comments
Closed

Statusbar font size #463

chrisw-thomas opened this issue Jun 2, 2018 · 2 comments

Comments

@chrisw-thomas
Copy link

Is there a way to set the size of the font used for a Statusbar?

@jarvisteach
Copy link
Owner

jarvisteach commented Jun 3, 2018

The statusbar has its own font, so you can change it (in Python3), with the following code:

from tkinter import font as tkFont
from appJar import gui

with gui() as app:
    app.label('hello world')
    app.status(text="hello world")
    app._statusFont = tkFont.Font(family="Helvetica", size=20)

jarvisteach added a commit that referenced this issue Jun 10, 2018
Changing status bar font
@jarvisteach jarvisteach added this to the 1.0 milestone Jul 1, 2018
jarvisteach added a commit that referenced this issue Jul 1, 2018
Setters/getters for statusfont
Also named the border of tabbedframes #401
@jarvisteach
Copy link
Owner

New setter/getter added:

app.statusFont = 20

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants