X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fplugins%2Ftest.c;h=ae62a7d4b42ba9be98d5b690b70b20ad76e2f557;hb=ddec1ba9b0fe842aef5fd0039fd0f79f275c87f1;hp=8fb3ee6b9fda2fb2d457519d91a08dcd4bab3e49;hpb=c69956150a63153bc1ed765a265ca46c1da21374;p=grits diff --git a/src/plugins/test.c b/src/plugins/test.c index 8fb3ee6..ae62a7d 100644 --- a/src/plugins/test.c +++ b/src/plugins/test.c @@ -123,7 +123,7 @@ void _load_poly(GritsPluginTest *test) test->poly->color[3] = 0.2; test->poly->border[3] = 1; test->poly->width = 6; - grits_viewer_add(test->viewer, GRITS_OBJECT(test->poly), GRITS_LEVEL_OVERLAY, TRUE); + grits_viewer_add(test->viewer, GRITS_OBJECT(test->poly), GRITS_LEVEL_OVERLAY, FALSE); g_signal_connect(test->poly, "enter", G_CALLBACK(on_poly_enter), NULL); g_signal_connect(test->poly, "leave", G_CALLBACK(on_poly_leave), NULL); g_signal_connect(test->poly, "button-press", G_CALLBACK(on_poly_button), NULL); @@ -138,7 +138,7 @@ void _load_line(GritsPluginTest *test) test->line->color[2] = 0; test->line->color[3] = 1; test->line->width = 8; - grits_viewer_add(test->viewer, GRITS_OBJECT(test->line), GRITS_LEVEL_OVERLAY, TRUE); + grits_viewer_add(test->viewer, GRITS_OBJECT(test->line), GRITS_LEVEL_OVERLAY, FALSE); g_signal_connect(test->line, "enter", G_CALLBACK(on_poly_enter), NULL); g_signal_connect(test->line, "leave", G_CALLBACK(on_poly_leave), NULL); g_signal_connect(test->line, "button-press", G_CALLBACK(on_poly_button), NULL);