Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
QB64PE Quick Const Reference Tool
#5
I found out why it wasn't working @SMcNeill - I didn't have your font.

I used:

/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf for the fallback

And now it works.

Code: (Select All)

'default font is set below
$If WIN Then
font$ = "Courbd.ttf"
$Else
IF _FileExists("/usr/share/fonts/truetype/3270/3270Condensed-Regular.ttf") THEN
font$ = "/usr/share/fonts/truetype/3270/3270Condensed-Regular.ttf"
ELSEIF _FileExists("/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf") THEN
font$ = "/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf"
ELSE
font$ = ""
END IF
$End If
grymmjack (gj!)
GitHubYouTube | Soundcloud | 16colo.rs
Reply


Messages In This Thread
QB64PE Quick Const Reference Tool - by SMcNeill - 01-14-2026, 10:25 PM
RE: QB64PE Quick Const Reference Tool - by grymmjack - 01-17-2026, 06:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Tool Tips SMcNeill 1 695 10-18-2024, 01:05 AM
Last Post: Pete
  Color Fetch Tool SMcNeill 0 641 11-25-2022, 11:31 AM
Last Post: SMcNeill

Forum Jump:


Users browsing this thread: