Force focus when starting up.
[xtoys] / xgetline.c
index ed621ae..a7c505f 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: xgetline.c,v 1.4 1998/11/30 22:36:47 mdw Exp $
+ * $Id: xgetline.c,v 1.5 1998/12/03 00:39:44 mdw Exp $
  *
  * Fetch a line of text from the user
  *
@@ -29,6 +29,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: xgetline.c,v $
+ * Revision 1.5  1998/12/03 00:39:44  mdw
+ * Force focus when starting up.
+ *
  * Revision 1.4  1998/11/30 22:36:47  mdw
  * Tidy up tabbing in help texts very slightly.
  *
@@ -53,6 +56,7 @@
 #include <gtk/gtk.h>
 #include <gdk/gdkkeysyms.h>
 
+#include "mdwfocus.h"
 #include "mdwopt.h"
 #include "quis.h"
 
@@ -328,6 +332,8 @@ int main(int argc, char *argv[])
 
   /* --- Go go go --- */
 
+  gtk_widget_realize(win);
+  mdwfocus(win);
   gtk_widget_show(win);
   gtk_main();