ocarina: New window for settings

Clicking the settings button will now create a new window for
configuring settings.
This commit is contained in:
Bryan Schumaker 2011-01-22 13:34:04 -05:00
parent fd1514202f
commit 93dcfe5f8e

View File

@ -1,6 +1,12 @@
# Bryan Schumaker (1 / 22 / 2010)
import ocarina
gtk = ocarina.gtk
window = None
def configure():
print "Configuring settings..."
global window
window = gtk.Window()
window.set_title("Settings")
window.show()