From: Robert Kaiser Date: Tue, 28 Apr 2009 20:08:16 +0000 (+0200) Subject: make extra button to call image drawing really work X-Git-Url: https://git-public.kairo.at/?p=mandelbrot.git;a=commitdiff_plain;h=ae37e95ae30b1049ab4bd8b07e6efcf8fd014ce3 make extra button to call image drawing really work --- diff --git a/xulapp/chrome/mandelbrot/content/image-settings.js b/xulapp/chrome/mandelbrot/content/image-settings.js index 3b19434..a025bde 100644 --- a/xulapp/chrome/mandelbrot/content/image-settings.js +++ b/xulapp/chrome/mandelbrot/content/image-settings.js @@ -40,6 +40,8 @@ var gColorPalette = []; function initSettings() { recalcCoord('Cr', 'scale'); recalcCoord('Ci', 'scale'); + if (!window.opener) + window.getButton('extra1').disabled = true; } function drawPreview() { @@ -134,4 +136,9 @@ function checkProportions() { function roundCoord(floatval) { // We should round to 10 decimals here or so return floatval; +} + +function callDrawImage() { + window.opener.drawImage(); + window.close(); } \ No newline at end of file