Ticket #7828: TMSLayer.patch

File TMSLayer.patch, 1.2 KB (added by Locked, 14 years ago)
  • TMSLayer.java

    # This patch file was generated by NetBeans IDE
    # Following Index: paths are relative to: C:\Users\Franz\Documents\NetBeansProjects\JOSM-Plugins\core\src\org\openstreetmap\josm\gui\layer
    # This patch can be applied using context Tools: Patch action on respective folder.
    # It uses platform neutral UTF-8 encoding and \n newlines.
    # Above lines and this line are ignored by the patching process.
     
    702702    }
    703703
    704704    /**
    705      * Zoom out from map.
     705     * Check if zooming out is allowed
    706706     *
    707      * @return    true, if zoom increasing was successfull, false othervise
     707     * @return    true, if zooming out is allowed (currentZoomLevel > minZoomLevel)
    708708     */
    709709    public boolean zoomDecreaseAllowed() {
    710710        return currentZoomLevel > this.getMinZoomLvl();
    711711    }
    712712   
     713    /**
     714     * Zoom out from map.
     715     *
     716     * @return    true, if zoom increasing was successfull, false othervise
     717     */
    713718    public boolean decreaseZoomLevel() {
    714719        //int minZoom = this.getMinZoomLvl();
    715720        if (zoomDecreaseAllowed()) {