[Gambas-bugtracker] Bug #2592: Fixed width text is not displayed correctly QT5 ok with GTK

bugtracker at gambaswiki.org bugtracker at gambaswiki.org
Thu Jul 21 01:03:20 CEST 2022


http://gambaswiki.org/bugtracker/edit?object=BUG.2592&from=L21haW4-

Comment #2 by Brian G:

This is the code I use to create the terminal

Sub openTTYWindow()

  TTYForm = New Form As "MyTerminal"
  TTYFORM.title = " 6502 tty "
  TTYForm.persistent = true
  TTYForm.arrangement = arrange.fill

  TermOut = New TerminalView(TTYForm) As "MyView"
  TermOut.Enabled = True
  TermOut.ReadOnly = False
  TermOut.Width = TTYForm.width - 2
  TermOut.Height = TTYForm.Height - 2
  TermOut.Y = 1
  TermOut.X = 1
  TTYFORM.show()
  TermOut.print("\e[32m")

End

I am not setting any font, what ever is the default I guess

Brian G changed the state of the bug to: Accepted.




More information about the Bugtracker mailing list