Today, I opened my Greenfoot project, and all of a sudden, all of my font settings were wrong.
super(600, 400, 1);
getBackground().setColor(Color.GRAY);
getBackground().fill();
getBackground().setColor(Color.BLUE);
getBackground().setFont(new Font("", Font.BOLD, 50));
getBackground().drawString("What country is this?", 30, 70);
For instance, here, the BOLD is underlined in red. Does anyone know how to fix this problem?

