1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 23:56:05 +02:00

Squiggle fix for non-default font, manually add method fix

This commit is contained in:
Brian Fiete 2019-09-30 12:23:27 -07:00
parent e43beb5794
commit 69e3bf94f7
4 changed files with 15 additions and 11 deletions

View file

@ -449,6 +449,9 @@ namespace IDE.ui
continue;
}
if (!projectFolder.mAutoInclude)
continue;
let ext = scope String();
Path.GetExtension(fileName, ext);

View file

@ -642,7 +642,7 @@ namespace IDE.ui
if (underlineColor != 0)
{
using (g.PushColor(underlineColor))
IDEApp.sApp.DrawSquiggle(g, x, y, width);
gApp.DrawSquiggle(g, x, y, width);
}
}
}