2006-06-21 Emmanuele Bassi <ebassi@openedhand.com>

* examples/video-cube.c (main): Quit on key press.
This commit is contained in:
Emmanuele Bassi 2006-06-21 17:25:14 +00:00
parent 8cb8cfd5f0
commit 1b7b2bc573
3 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-06-21 Emmanuele Bassi <ebassi@openedhand.com>
* examples/video-cube.c (main): Quit on key press.
2006-06-21 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/Makefile.am: Re-fix distcheck after last commit.

View File

@ -45,6 +45,7 @@ clutter-main
@a...:
@a...:
@a...:
@a...:
@a...:

View File

@ -238,6 +238,8 @@ main (int argc, char *argv[])
clutter_init (&argc, &argv);
stage = clutter_stage_get_default ();
g_signal_connect (stage, "key-press-event",
G_CALLBACK (clutter_main_quit), NULL);
pixbuf = gdk_pixbuf_new_from_file ("clutter-logo-800x600.png", NULL);