aboutsummaryrefslogtreecommitdiff
path: root/src/transport-widget.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2010-06-29 10:16:45 +0100
committerConor Curran <conor.curran@canonical.com>2010-06-29 10:16:45 +0100
commita9186ea33c957a90cb4bfea464244602f4637b37 (patch)
tree95dda99b35a46bd8f40605eb39a8d972e2e1304c /src/transport-widget.c
parent0e616c323a678732dbd593d0d430507e099fda9f (diff)
downloadayatana-indicator-sound-a9186ea33c957a90cb4bfea464244602f4637b37.tar.gz
ayatana-indicator-sound-a9186ea33c957a90cb4bfea464244602f4637b37.tar.bz2
ayatana-indicator-sound-a9186ea33c957a90cb4bfea464244602f4637b37.zip
more debug
Diffstat (limited to 'src/transport-widget.c')
-rw-r--r--src/transport-widget.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/transport-widget.c b/src/transport-widget.c
index 07e7402..6ff3c04 100644
--- a/src/transport-widget.c
+++ b/src/transport-widget.c
@@ -89,6 +89,16 @@ transport_widget_init (TransportWidget *self)
priv->play_button = play_button_new();
+ GtkAllocation alloc;
+
+ alloc.width = 200;
+ alloc.height = 600;
+ alloc.x = 100;
+ alloc.y = 0;
+
+ gtk_widget_set_allocation(GTK_WIDGET(priv->play_button),
+ &alloc);
+
gtk_box_pack_start (GTK_BOX (priv->hbox), priv->play_button, FALSE, FALSE, 0);
g_signal_connect(G_OBJECT(twin_item), "property-changed", G_CALLBACK(transport_widget_property_update), self);