~swem/totem/assignment

« back to all changes in this revision

Viewing changes to src/totem-statusbar.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-01-27 09:40:18 UTC
  • mfrom: (1.4.2 upstream) (5.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20100127094018-q6rzt7va0y8ketwt
Tags: 2.29.4-1
* New upstream development release:
  + debian/patches/90_autotools.patch:
    - Refreshed for the new version.
  + debian/control.in:
    - Update build dependencies and dependencies.
    - Drop tracker plugin, it needs tracker 0.7.
  + debian/totem-mozilla.links:
    - Drop the complex plugin, it doesn't exist anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  statusbar->time = 0;
63
63
  statusbar->length = -1;
64
64
 
65
 
  hbox = gtk_hbox_new (FALSE, SPACING);
66
 
 
67
 
  /* Widget surgery */
68
 
  g_object_ref (gstatusbar->label);
69
 
  gtk_container_remove (GTK_CONTAINER (gstatusbar->frame), gstatusbar->label);
70
 
  gtk_box_pack_start (GTK_BOX (hbox), gstatusbar->label, FALSE, FALSE, 0);
71
 
  g_object_unref (gstatusbar->label);
72
 
  gtk_container_add (GTK_CONTAINER (gstatusbar->frame), hbox);
73
 
  gtk_widget_show (hbox);
74
 
 
 
65
  hbox = gtk_statusbar_get_message_area (gstatusbar);
 
66
 
 
67
  gtk_box_set_child_packing (GTK_BOX (hbox), gstatusbar->label,
 
68
                             FALSE, FALSE, 0, GTK_PACK_START);
75
69
  gtk_label_set_ellipsize (GTK_LABEL (gstatusbar->label), FALSE);
76
70
 
77
71
  /* progressbar for network streams */