Re: [JPP-Devel] NullPointerException Change Raster Image Properties

2015-05-20 Thread Rahkonen Jukka (MML)
Hi, The image disappears also for me with r4455 initially but if I just zoom in one time it comes back and stays visible after that. -Jukka Rahkonen- Uwe Dalluege wrote: Hi Peppe, thank you for your quick answer. Unfortunately the rasterimage disappears after pressing the Apply button.

Re: [JPP-Devel] How to keep the project window responsible while plugin is open?

2015-05-20 Thread Rahkonen Jukka (MML)
Hi, Am I right that the spatialite dialog is set to modal somewhere in this code https://sourceforge.net/p/jump-pilot/code/HEAD/tree/plug-ins/SpatialitePlugin/trunk/src/org/jam/openjump/spatialiteplugin/SpatialiteDialog.java? -Jukka- edgar.soldin wrote: On 18.05.2015 13:53, Rahkonen Jukka

[JPP-Devel] SVN: [4456] core/trunk/src/org/openjump/core/ui/plugin/layer/pirolraster

2015-05-20 Thread jump-pilot-svn
Revision: 4456 http://sourceforge.net/p/jump-pilot/code/4456 Author: ma15569 Date: 2015-05-20 17:44:56 + (Wed, 20 May 2015) Log Message: --- Correct bug described by Uwe (Apply or Ok on Change Image Properties and the image disappears). Now the plugin has two

Re: [JPP-Devel] How to keep the project window responsible while plugin is open?

2015-05-20 Thread Michaël Michaud
Hi Jukka, Line 79, the SpatialiteDialog uses the super keyword to inititialize the dialog with its parent constructor JDialog(Frame frame,String title,boolean modal) You can see that it is initialized with modal = true. Try to change it to false here, Hope that helps Michaël Le 20/05/2015

[JPP-Devel] Fwd: NullPointerException Change Raster Image Properties

2015-05-20 Thread Giuseppe Aruta
-- Forwarded message -- From: Giuseppe Aruta giuseppe.ar...@gmail.com Date: 2015-05-20 20:33 GMT+02:00 Subject: Re: [JPP-Devel] NullPointerException Change Raster Image Properties To: Rahkonen Jukka (MML) jukka.rahko...@maanmittauslaitos.fi Applied the modifications, see OpenJUMP

Re: [JPP-Devel] How to keep the project window responsible while plugin is open?

2015-05-20 Thread edgar . soldin
close ;), but according to http://docs.oracle.com/javase/7/docs/api/java/awt/Dialog.html#DEFAULT_MODALITY_TYPE JDialog seems to be modal by default you can use http://docs.oracle.com/javase/7/docs/api/java/awt/Dialog.html#setModalityType%28java.awt.Dialog.ModalityType%29 to set it unmodal