Skip to content

Commit

Permalink
Investigating issue #571
Browse files Browse the repository at this point in the history
Checking issues with python2 & sticky
  • Loading branch information
jarvisteach committed Mar 13, 2019
1 parent 32f1828 commit b98a33a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions examples/issues/issue571.py
@@ -0,0 +1,11 @@
import sys
sys.path.append("../../")

from appJar import gui

with gui('Test') as app:
app.setSize(250, 200)
with app.labelFrame('Status'):
app.addLabel('status', 'Unknown')
app.setLabelBg('status', 'grey')
app.setLabelSticky('status', 'nsew')

0 comments on commit b98a33a

Please sign in to comment.