Skip to content

Commit

Permalink
Updated testing #189
Browse files Browse the repository at this point in the history
  • Loading branch information
jarvisteach committed Jan 16, 2018
1 parent 89ff952 commit adf66f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/issues/issue189_3.py
Expand Up @@ -2,15 +2,15 @@
sys.path.append("../../")
from appJar import gui

with gui("appJar", useTtk=True) as app:
with gui("appJar") as app:
app.setPadding(10, 10)
app.ttkStyle.configure(".", background="blue")
# app.ttkStyle.configure(".", background="blue")
app.addButton("Button", func=None)
app.addButton("Button2", func=None)

with app.frame("frame"):
app.setPadding(10, 10)
app.ttkStyle.configure(".", background="white")
# app.ttkStyle.configure(".", background="white")
app.setBg("white")
app.addButton("Button3", func=None)
app.addButton("Button4", func=None)

0 comments on commit adf66f9

Please sign in to comment.