Skip to content

Commit

Permalink
Investigating issue #415
Browse files Browse the repository at this point in the history
  • Loading branch information
jarvisteach committed Mar 17, 2018
1 parent 30fd536 commit 7fbe566
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/issues/issue415.py
@@ -0,0 +1,15 @@
import sys
sys.path.append("../../")

from appJar import gui

def press():
app.disableEntry('FILES')
ent = app.getEntryWidget('FILES')
print(ent)
ent.theButton.config(state='disabled')

with gui() as app:
app.label('hello world')
app.entry("FILES", kind='file')
app.button('DISABLE', press)

0 comments on commit 7fbe566

Please sign in to comment.