~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to libbrasero-burn/brasero-drive-properties.c

  • Committer: Package Import Robot
  • Author(s): Rodrigo Moya
  • Date: 2011-09-09 12:27:41 UTC
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: package-import@ubuntu.com-20110909122741-b929bk0txqsqsyyi
Tags: upstream-3.1.90
ImportĀ upstreamĀ versionĀ 3.1.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
697
697
 
698
698
        priv = BRASERO_DRIVE_PROPERTIES_PRIVATE (object);
699
699
 
700
 
        vbox = gtk_vbox_new (FALSE, 0);
 
700
        vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
701
701
        gtk_widget_show (vbox);
702
702
        gtk_container_add (GTK_CONTAINER (object), vbox);
703
703
 
772
772
        image = gtk_image_new_from_icon_name ("folder", GTK_ICON_SIZE_BUTTON);
773
773
        gtk_widget_show (image);
774
774
 
775
 
        box = gtk_hbox_new (FALSE, 6);
 
775
        box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
776
776
        gtk_widget_show (box);
777
777
        gtk_box_pack_start (GTK_BOX (box), image, FALSE, FALSE, 0);
778
778
        gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
782
782
        gtk_container_add (GTK_CONTAINER (button), box);
783
783
        gtk_widget_set_tooltip_text (button, _("Set the directory where to store temporary files"));
784
784
 
785
 
        box = gtk_hbox_new (FALSE, 6);
 
785
        box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
786
786
        gtk_widget_show (box);
787
787
 
788
788
        string = g_strdup_printf ("<b>%s</b>", _("Temporary files"));