Changeset 2946 in osm for applications/editors/josm


Ignore:
Timestamp:
2007-05-19T23:49:52+02:00 (17 years ago)
Author:
christofd
Message:

set frame to stay on top

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorShowAction.java

    r2936 r2946  
    7272            surveyorFrame.setTitle((String)getValue(AbstractAction.NAME));
    7373            // <FIXXME date="28.04.2007" author="cdaller">
    74             // TODO get old size/pos of frame from properties
     74            // TODO get old pos of frame from properties
    7575            // </FIXXME>
     76            SurveyorPlugin.setSurveyorFrame(surveyorFrame);
    7677        }
     78        surveyorFrame.setAlwaysOnTop(true);
    7779        surveyorFrame.setVisible(true);
    7880
     
    9193        SurveyorComponent component= null;
    9294        try {
    93             if (source.startsWith("http") || source.startsWith("ftp") || source.startsWith("file"))
     95            if (source.startsWith("http://") || source.startsWith("ftp://") || source.startsWith("file:"))
    9496                in = new URL(source).openStream();
    9597            else if (source.startsWith("resource://"))
Note: See TracChangeset for help on using the changeset viewer.