summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2000-10-12 19:41:30 +0000
committerWim Taymans <wim.taymans@gmail.com>2000-10-12 19:41:30 +0000
commitb7810a363593e6324a8a2a097613d02238b8032d (patch)
tree9b19a98481255d002e4cb17f4fd8be7080b58380 /editor
parent7694a06b5da3980704caf6152d50446901b07c47 (diff)
Removed the hardcoded pipeline setup is gstplay in favor of the autoplugging features. Still in a rought shape...
Original commit message from CVS: Removed the hardcoded pipeline setup is gstplay in favor of the autoplugging features. Still in a rought shape...
Diffstat (limited to 'editor')
-rw-r--r--editor/gsteditorconnection.c2
-rw-r--r--editor/gsteditorpad.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/gsteditorconnection.c b/editor/gsteditorconnection.c
index 95c8699eb0..1f7f28be97 100644
--- a/editor/gsteditorconnection.c
+++ b/editor/gsteditorconnection.c
@@ -179,7 +179,7 @@ static void gst_editor_connection_realize(GstEditorConnection *connection) {
connection->line = gnome_canvas_item_new(
GST_EDITOR_ELEMENT(connection->parent)->group,
gnome_canvas_line_get_type(),
- "points",connection->points,NULL);
+ "points",connection->points,"width_units",2.0, NULL);
}
static void gst_editor_connection_destroy(GtkObject *object) {
diff --git a/editor/gsteditorpad.c b/editor/gsteditorpad.c
index db7c544276..e2972aeca3 100644
--- a/editor/gsteditorpad.c
+++ b/editor/gsteditorpad.c
@@ -226,7 +226,7 @@ static void gst_editor_pad_realize(GstEditorPad *pad) {
pad->border = gnome_canvas_item_new(pad->group,
gnome_canvas_rect_get_type(),
- "width_units",1.0,"fill_color","white","outline_color","black",
+ "width_units",1.0,"fill_color_rgba", 0xCCFFCC00,"outline_color","black",
"x1",0.0,"y1",0.0,"x2",pad->width,"y2",pad->height,NULL);
g_return_if_fail(pad->border != NULL);
GST_EDITOR_SET_OBJECT(pad->border,pad);