tExtra frame added to the lower pane of the main window, to make the control thingy for the pane easier to see. - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit d3976c0b72e808e93f1780459629e916449a07f4
 (DIR) parent c2314f88663fffce3bfc3ca5a515ac995b6fd639
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Mon,  8 Apr 2002 13:04:36 +0000
       
       Extra frame added to the lower pane of the main window, to make the control
       tthingy for the pane easier to see.
       
       
       Diffstat:
         M src/gui_client/gtk_client.c         |       6 +++++-
       
       1 file changed, 5 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/src/gui_client/gtk_client.c b/src/gui_client/gtk_client.c
       t@@ -2211,7 +2211,11 @@ gboolean GtkLoop(int *argc, char **argv[], gboolean ReturnOnFail)
          gtk_box_pack_start(GTK_BOX(ClientData.Drug.vbbox), button, TRUE, TRUE, 0);
          SetJetButtonTitle(accel_group);
        
       -  gtk_paned_pack2(GTK_PANED(vpaned), hbox, TRUE, TRUE);
       +  frame = gtk_frame_new(NULL);
       +  gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN);
       +  gtk_container_add(GTK_CONTAINER(frame), hbox);
       +
       +  gtk_paned_pack2(GTK_PANED(vpaned), frame, TRUE, TRUE);
        
          gtk_box_pack_start(GTK_BOX(vbox), vpaned, TRUE, TRUE, 0);