Ignore:
Timestamp:
2009-07-27T18:50:48+02:00 (15 years ago)
Author:
Gubaer
Message:

added diagnostic messages for #3109 - window order generally messed up?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/PleaseWaitDialog.java

    r1856 r1861  
    11// License: GPL. Copyright 2007 by Immanuel Scholz and others
    22package org.openstreetmap.josm.gui;
     3
     4import static org.openstreetmap.josm.tools.I18n.tr;
    35
    46import java.awt.Dialog;
     
    5658        // and all the other windows (relation editors, detached dialogs, etc.)
    5759        //
    58         setAlwaysOnTop(true);
     60        try {
     61            setAlwaysOnTop(true);
     62        } catch(SecurityException e) {
     63            System.out.println(tr("Warning: failed to put ''please wait dialog'' always on top. Exception was: {0}", e.toString()));
     64        }
    5965    }
    6066
Note: See TracChangeset for help on using the changeset viewer.