pashapm / lanterna

Automatically exported from code.google.com/p/lanterna
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Corrupt characters under ubuntu #132

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
As in issue 8 I have the corrupt characters when using Ubuntu and Lanterna 
2.1.8 - but even when I install a courier new font they won't appear right. 
Same in Terminal layer, Screen layer and GUIScreen layer.
<code>
public class Main {

        public static void main(String... args) throws InterruptedException 
        {
             Screen screen = TerminalFacade.createScreen();

             screen.startScreen();
             screen.putString(5, 10, "Hello world", Terminal.Color.WHITE, Terminal.Color.BLACK);
             screen.refresh();
             Thread.sleep(3000);
             screen.stopScreen();
             System.exit(0);

        }
}
</code>

Original issue reported on code.google.com by sven.pow...@gmail.com on 17 Apr 2015 at 9:12

Attachments:

GoogleCodeExporter commented 9 years ago
Ok, I don't have access to Ubuntu at the moment but I'll see if I can reproduce 
this. Have you checked your installation if the Java Monospace 'virtual' font 
is correctly picking up a real monospaced font?

Original comment by mab...@gmail.com on 28 Jun 2015 at 12:20