Index: /applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiFieldString.java
===================================================================
--- /applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiFieldString.java	(revision 34421)
+++ /applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiFieldString.java	(revision 34422)
@@ -7,4 +7,7 @@
 
 public class GuiFieldString extends JTextField {
+	/*
+	 * TODO: integrate presentation of dataValid;
+	 */
 
 	protected Border defaultBorder;
Index: /applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiProjections.java
===================================================================
--- /applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiProjections.java	(revision 34421)
+++ /applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiProjections.java	(revision 34422)
@@ -30,4 +30,7 @@
 	/*
 	 * provide a component let the user select a projection
+	 * TODO: allow preferences for sub-projections like UTM, Gauss-Krüger, etc.
+	 * TODO: allow selection of projection by code (EPSG)
+	 * TODO: allow selection of custom projection
 	 */
 	private GuiPanel panel = null;
@@ -147,6 +150,7 @@
 		try {
 			bd=p.getWorldBoundsBoxEastNorth();
-			s += String.format("Center: (%.0f %.0f) Min:(%.0f %.0f) Max:(%.0f %.0f)", bd.getCenter().east(),bd.getCenter().north(), bd.getMin().east(),bd.getMin().north(),bd.getMax().east(),bd.getMax().north());
+			s += String.format("(%3$.0f %4$.0f) : (%5$.0f %6$.0f)", bd.getCenter().east(),bd.getCenter().north(), bd.getMin().east(),bd.getMin().north(),bd.getMax().east(),bd.getMax().north());
 		} catch (Exception e) {
+			e.toString();
 			// Leave it, if we cant get it
 		}
Index: /applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java
===================================================================
--- /applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java	(revision 34421)
+++ /applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java	(revision 34422)
@@ -363,9 +363,13 @@
 		 /*
 		  * perform load PDF file to preview
+		  * TODO: load preview to previous placement, involves reverse transform
 		  */
 		final File newFileName = this.chooseFile();
 
 		if (newFileName == null) {
-			return;
+			if (Preferences.getGuiMode() == Preferences.GuiMode.Simple) {
+				cancelAction();
+			} else
+				return;
 		}
 		Logging.debug("PdfImport: Load Preview");
Index: /applications/editors/josm/plugins/pdfimport/src/pdfimport/PdfImportPlugin.java
===================================================================
--- /applications/editors/josm/plugins/pdfimport/src/pdfimport/PdfImportPlugin.java	(revision 34421)
+++ /applications/editors/josm/plugins/pdfimport/src/pdfimport/PdfImportPlugin.java	(revision 34422)
@@ -50,4 +50,7 @@
 	@Override
 	public PreferenceSetting getPreferenceSetting() {
+		/*
+		 * TODO: implement it
+		 */
 		return new pdfimportPrefs();
 		}
