X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=BrowserWindow.vala;h=73ac9cee7f5aa85add2f4bb51503ca1d13c2a6b4;hb=8847a28e69f86c7ca52bda090096ddfc94c2bf6f;hp=c81076db4b001ae8eecc1a427a8605bbe11a3c88;hpb=117cdb12d86d463b0e8515b42828320b283f64ef;p=app.webkitpdf diff --git a/BrowserWindow.vala b/BrowserWindow.vala index c81076d..73ac9ce 100644 --- a/BrowserWindow.vala +++ b/BrowserWindow.vala @@ -4,7 +4,7 @@ public class BrowserWindow : Object { public Gtk.Window el; private BrowserWindow _this; - + public string cookie_file; public static BrowserWindow singleton() { if (_BrowserWindow == null) { @@ -32,6 +32,7 @@ public class BrowserWindow : Object //listeners this.el.destroy.connect( () => { + Gtk.main_quit(); }); this.el.show.connect( () => { @@ -73,7 +74,7 @@ public class BrowserWindow : Object try { FileIOStream iostream; File file = File.new_tmp ("cookie-XXXXXX.txt", out iostream); - + this.cookie_file = file.get_path (); print("cookie tmp file name: %s\n", file.get_path ()); OutputStream ostream = iostream.output_stream; @@ -108,7 +109,7 @@ public class BrowserWindow : Object if (cd < 1) { print("calling printit - timed out"); _this.view.printit(); - print("deleting tmp file %s\n",file.get_path ()); + return false; } return true; @@ -316,6 +317,7 @@ public class BrowserWindow : Object pe.set_page_setup(psetup); pe.finished.connect( () => { print("print completed\n"); + Gtk.main_quit(); });