Changeset 34425 in osm


Ignore:
Timestamp:
2018-07-17T19:29:40+02:00 (6 years ago)
Author:
nzara
Message:

bug fix

Location:
applications/editors/josm/plugins/pdfimport/src/pdfimport
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java

    r34423 r34425  
    300300                        actionPanel.showButton.setVisible(false);
    301301                        setSize(new Dimension(380, 350));
    302                         loadAction();
     302                        if (!loadAction()) {
     303                                cancelAction();
     304                                return;
     305                        }
    303306                } else {
    304307                        setSize(new Dimension(450, 600));
    305 //                      setSize(450, 600);
    306                 }
     308                }
     309                setAlwaysOnTop(true);
     310                setVisible(true);
    307311        }
    308312
     
    360364        }
    361365
    362          private void loadAction() {
     366         private boolean loadAction() {
    363367                 /*
    364368                  * perform load PDF file to preview
     
    368372
    369373                if (newFileName == null) {
    370                         if (Preferences.getGuiMode() == Preferences.GuiMode.Simple) {
    371                                 cancelAction();
    372                         } else
    373                                 return;
     374                        return false;
    374375                }
    375376                Logging.debug("PdfImport: Load Preview");
     
    425426                        }
    426427                });
     428                return true;
    427429        }
    428430
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/PdfImportAction.java

    r34398 r34425  
    3737         */
    3838        LoadPdfDialog dialog = new LoadPdfDialog();
    39         dialog.setAlwaysOnTop(true);
    4039        dialog.setTitle(tr("Import PDF"));
    41         dialog.setVisible(true);
    4240    }
    4341}
Note: See TracChangeset for help on using the changeset viewer.