sugar-toolkit-gtk3/examples/intro.py
Daniel Narvaez 148655635f Add a make target for tests
We are running the existing test_mime.py. All the other tests which
are not unit tests but more examples of code one can run interactively
are moved to the example directory.
2013-04-09 11:36:51 +02:00

9 lines
162 B
Python

from gi.repository import Gtk
from common import set_theme
from jarabe.intro.window import IntroWindow
set_theme()
win = IntroWindow()
win.show_all()
Gtk.main()