Changeset 17807 in josm


Ignore:
Timestamp:
2021-04-20T22:14:12+02:00 (4 years ago)
Author:
simon04
Message:

see #20706 - Revert "Enable text antialiasing for more JosmEditorPane"

This reverts r17798.

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 edited

Legend:

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

    r17798 r17807  
    10341034        // Disable automatic POST retry after 5 minutes, see #17882 / https://bugs.openjdk.java.net/browse/JDK-6382788
    10351035        Utils.updateSystemProperty("sun.net.http.retryPost", "false");
    1036         // Force text antialiasing, not including mappaint text
    1037         Utils.updateSystemProperty("awt.useSystemAAFontSettings", "on");
    10381036    }
    10391037
  • trunk/src/org/openstreetmap/josm/gui/widgets/JosmEditorPane.java

    r17798 r17807  
    44import java.awt.Color;
    55import java.awt.Font;
    6 import java.awt.Graphics;
    7 import java.awt.Graphics2D;
    8 import java.awt.RenderingHints;
    96import java.io.IOException;
    107import java.io.InputStream;
     
    2522
    2623/**
    27  * Subclass of {@link JEditorPane} that adds a "native" context menu (cut/copy/paste/select all), forces text and bullet
    28  * point antialiasing based on user preferences, and effectively uses JOSM user agent when performing HTTP request in
    29  * {@link #setPage(URL)} method.
     24 * Subclass of {@link JEditorPane} that adds a "native" context menu (cut/copy/paste/select all)
     25 * and effectively uses JOSM user agent when performing HTTP request in {@link #setPage(URL)} method.
    3026 * @since 5886
    3127 */
     
    8985        }
    9086        return conn.getContent();
    91     }
    92 
    93     @Override
    94     public void paintComponent(Graphics g) {
    95         // Force antialiasing within the JosmEditorPane for antialiased bullet points
    96         Graphics2D g2d = (Graphics2D) g.create();
    97         g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    98         g2d.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
    99         super.paintComponent(g2d);
    100         g2d.dispose();
    10187    }
    10288
Note: See TracChangeset for help on using the changeset viewer.