Check-in [976b6210b7]
Not logged in
Overview
SHA1 Hash:976b6210b7e1468355b867289254d5499e48815f
Date: 2012-07-14 22:49:28
User: kinaba
Comment:Fixed exception from timered-run.
Timelines: family | ancestors | descendants | both | trunk
Diffs: redesign
Downloads: Tarball | ZIP archive
Other Links: files | file ages | manifest
Tags And Properties
Changes

Modified src/gui.d from [4cc6400795e7a727] to [e56b333ba2eacac4].

22 22 if(automate) { 23 23 Timer t = new Timer; 24 24 t.interval = 100; 25 25 t.tick ~= (Timer sender, EventArgs ea){ 26 26 fn(solver.single_step()); 27 27 }; 28 28 t.start(); 29 + this.closing ~= (Form f,CancelEventArgs c){t.stop();}; 29 30 } 30 31 Application.run(this); 31 32 } 32 33 33 34 override void on_game_changed(char c, const(Game) g, bool finished) 34 35 { 35 36 draw(g);