URI:
       tFix new game after abandon game - vaccinewars - be a doctor and try to vaccinate the world
  HTML git clone git://src.adamsgaard.dk/vaccinewars
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 065fbfa2c10ecb970d14b2054c7673fbc3d1de44
   DIR parent f6cbc8315299ce88c405cd826d990cdb19a0c09a
  HTML Author: Ben Webb <ben@salilab.org>
       Date:   Mon, 30 Nov 2020 23:56:47 -0800
       
       Fix new game after abandon game
       
       Previously "abandon game" would hide the game window
       but then starting a new game wouldn't show the window
       again.
       
       Diffstat:
         M src/gtkport/gtkport.c               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/src/gtkport/gtkport.c b/src/gtkport/gtkport.c
       t@@ -1360,7 +1360,7 @@ void gtk_widget_show_full(GtkWidget *widget, gboolean recurse)
        
        void gtk_widget_hide(GtkWidget *widget)
        {
       -  gtk_widget_hide_full(widget, TRUE);
       +  gtk_widget_hide_all_full(widget, FALSE);
        }
        
        void gtk_widget_hide_full(GtkWidget *widget, gboolean recurse)