Home | History | Annotate | Download | only in patches
      1  9640  dcarbery --- 2.0b3.1-ori/gtk/gtkaccount.c	2006-08-20 04:36:07.000000000 +0800
      2  9640  dcarbery +++ 2.0b3.1-my/gtk/gtkaccount.c	2006-08-30 15:34:24.903333000 +0800
      3  9198  lj139971 @@ -1690,6 +1690,7 @@
      4  9198  lj139971  	GtkWidget *win;
      5  9198  lj139971  	GtkWidget *main_vbox;
      6  9198  lj139971  	GtkWidget *vbox;
      7  9198  lj139971 +        GtkWidget *vbox_proxy;
      8  9198  lj139971  	GtkWidget *bbox;
      9  9198  lj139971  	GtkWidget *dbox;
     10  9198  lj139971  	GtkWidget *notebook;
     11  9198  lj139971 @@ -1773,7 +1774,12 @@
     12  9198  lj139971  
     13  9198  lj139971  	/** Setup the bottom frames. */
     14  9198  lj139971  	add_protocol_options(dialog, dbox);
     15  9198  lj139971 -	add_proxy_options(dialog, dbox);
     16  9198  lj139971 + 
     17  9198  lj139971 +        /* Proxy goes to second tab */
     18  9198  lj139971 +        vbox_proxy = gtk_vbox_new(FALSE, 18);
     19  9198  lj139971 +        add_proxy_options(dialog, vbox_proxy);
     20  9198  lj139971 +        gtk_notebook_append_page (notebook, vbox_proxy, gtk_label_new(_("Proxy Options")));
     21  9198  lj139971 +        gtk_widget_show_all(notebook);
     22  9198  lj139971  
     23  9198  lj139971  	/* Setup the button box */
     24  9198  lj139971  	bbox = gtk_hbutton_box_new();
     25