From 834600c514ca38f96f3df4b5ed2d48db3bd4ae89 Mon Sep 17 00:00:00 2001 From: martins Date: Mon, 24 Oct 2022 11:25:24 +0200 Subject: [PATCH] ok --- .../src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java index a3efa1c..0f61249 100644 --- a/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java +++ b/projetAgile/src/fr/iutfbleau/projetAgile/Menu/View/BoutonsMenu.java @@ -69,13 +69,13 @@ public class BoutonsMenu extends JComponent{ } secondPinceau.setColor(new Color(255, 255, 255)); secondPinceau.setFont(new Font(Font.SANS_SERIF, Font.BOLD, (this.getWidth()/10))); - FontMetrics metrics = secondPinceau.getFontMetrics(new Font(Font.SANS_SERIF, Font.BOLD, this.getWidth()/10)); + FontMetrics metrics = secondPinceau.getFontMetrics(secondPinceau.getFont()); int x =(this.getWidth() - metrics.stringWidth(this.path)) / 2; int y = ((this.getHeight() - metrics.getHeight()) / 3) + metrics.getAscent(); secondPinceau.drawString((this.path.toUpperCase()), x, y); //DISPO OU PAS secondPinceau.setFont(new Font(Font.SANS_SERIF, Font.BOLD, (this.getWidth()/20))); - metrics = secondPinceau.getFontMetrics(new Font(Font.SANS_SERIF, Font.BOLD, this.getWidth()/20)); + metrics = secondPinceau.getFontMetrics(secondPinceau.getFont()); x = (this.getWidth() - metrics.stringWidth(dispo)) / 2; y = ((this.getHeight() - metrics.getHeight()) / 3*2) + metrics.getAscent(); secondPinceau.drawString(dispo, x, y);