+2005-05-04 Kristian Høgsberg <krh@redhat.com>
+
+ * shell/ev-sidebar.c (ev_sidebar_init): Remove frame around
+ dropdown box and button at the top of the sidebar.
+
2005-05-02 James Bowes <bowes@cs.dal.ca>
* configure.ac: Output zoom-control Makefile.
struct _EvSidebarPrivate {
GtkWidget *notebook;
GtkWidget *menu;
- GtkWidget *frame;
GtkWidget *hbox;
GtkWidget *label;
static void
ev_sidebar_init (EvSidebar *ev_sidebar)
{
- GtkWidget *frame;
GtkWidget *hbox;
GtkWidget *close_button;
GtkWidget *select_button;
G_TYPE_INT);
/* top option menu */
- frame = gtk_frame_new (NULL);
- ev_sidebar->priv->frame = frame;
- gtk_box_pack_start (GTK_BOX (ev_sidebar), frame, FALSE, FALSE, 0);
- gtk_widget_show (frame);
-
hbox = gtk_hbox_new (FALSE, 0);
ev_sidebar->priv->hbox = hbox;
- gtk_container_add (GTK_CONTAINER (frame), hbox);
+ gtk_box_pack_start (GTK_BOX (ev_sidebar), hbox, FALSE, FALSE, 0);
gtk_widget_show (hbox);
select_button = gtk_toggle_button_new ();