From http://www.jwz.org/xscreensaver/xscreensaver-5.35.tar.gz
[xscreensaver] / hacks / hexadrop.c
index dd8bfeeac8e7fca5e4aa01b59389ca8a0851d794..515cb4cd4e05455e3bd75669ce920c28963074e5 100644 (file)
@@ -1,4 +1,4 @@
-/* xscreensaver, Copyright (c) 1999-2013 Jamie Zawinski <jwz@jwz.org>
+/* xscreensaver, Copyright (c) 1999-2014 Jamie Zawinski <jwz@jwz.org>
  *
  * Permission to use, copy, modify, distribute, and sell this software and its
  * documentation for any purpose is hereby granted without fee, provided that
@@ -56,7 +56,6 @@ make_cells (state *st)
   int size, r, gw, gh, x, y, i;
   double th = 0;
 
-  grid_size = get_integer_resource (st->dpy, "size", "Size");
   if (grid_size < 5) grid_size = 5;
 
   size = ((st->xgwa.width > st->xgwa.height
@@ -360,7 +359,7 @@ hexadrop_event (Display *dpy, Window window, void *closure, XEvent *event)
 {
   state *st = (state *) closure;
 
-  if (event->type == ButtonPress || event->type == KeyPress)
+  if (screenhack_event_helper (dpy, window, event))
     {
       cell *c = st->cells;
       st->cells = 0;
@@ -386,7 +385,7 @@ static const char *hexadrop_defaults [] = {
   "*ncolors:           128",
   "*uniform:           Maybe",
   "*lockstep:          Maybe",
-#ifdef USE_IPHONE
+#ifdef HAVE_MOBILE
   "*ignoreRotation:     True",
 #endif
   0