mac-comp127 / kilt-graphics

Graphics and UI library for learning software development principles in Java
https://mac-comp127.github.io/kilt-graphics/
2 stars 17 forks source link

Button text is cropped on Windows #21

Closed alisonlange45 closed 3 years ago

alisonlange45 commented 3 years ago

This code:

public static void main(String[] args) {
    canvasTest = canvas = new CanvasWindow("Test", CANVAS_WIDTH, CANVAS_HEIGHT);
    Button basicTest = new Button("Button test");
    basicTest.setPosition(CANVAS_WIDTH/2, CANVAS_HEIGHT / 2);
    canvas.add(basicTest);
}

…produces this result:

Screenshot (345)

Button is properly sized for its text on Mac.

pcantrell commented 3 years ago

Fixed in #23