jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
615 stars 68 forks source link

Hello World [documentation] [old non working methods] #516

Closed muhammad-al-baqir-khalid closed 6 years ago

muhammad-al-baqir-khalid commented 6 years ago

http://appjar.info/pythonLessons/#/2/9 code: app.setGeometry('400x300') #not working app.setResizable(False) #not working

app.setSize(200,300) #working app.setResizable(canResize=False) #working

jarvisteach commented 6 years ago

Thanks for pointing that out!

I've updated the docs to show setSize instead of setGeometry, although I haven't made the other change as both should work.