aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2012-11-30 09:55:24 +0100
committerLaurent Ghigonis <laurent@p1sec.com>2012-11-30 09:55:24 +0100
commit3d5530db1fa2b90ba01e27bffab3df97ca341eb3 (patch)
tree0a17b8f889c49da13914192dd3cef95981741f07
parentfix evas object delete calls, so we can now free the grid content without crash (diff)
downloadglouglou-3d5530db1fa2b90ba01e27bffab3df97ca341eb3.tar.xz
glouglou-3d5530db1fa2b90ba01e27bffab3df97ca341eb3.zip
cell redraw when injecting pattern is not needed
-rw-r--r--src/elife_evas_smart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elife_evas_smart.c b/src/elife_evas_smart.c
index 6ef820c..ff744f8 100644
--- a/src/elife_evas_smart.c
+++ b/src/elife_evas_smart.c
@@ -279,7 +279,7 @@ grid_inject_pattern(struct grid *grid)
cell = CELL_GET(grid, cx, cy);
cell->newage = (pat->pat[pat->w*j + i] - '0') * 27;
cell->age = cell->newage;
- cell_redraw(cell, grid);
+ // cell_redraw(cell, grid);
}
}
}