mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Use theme text color in 'Generate File' dialog.
This commit is contained in:
parent
56aaf1904d
commit
d33dbfa09b
1 changed files with 6 additions and 3 deletions
|
@ -834,10 +834,13 @@ namespace IDE.ui
|
||||||
g.DrawString(label, widget.mX + GS!(6), widget.mY - GS!(20));
|
g.DrawString(label, widget.mX + GS!(6), widget.mY - GS!(20));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
using (g.PushColor(DarkTheme.COLOR_TEXT))
|
||||||
|
{
|
||||||
DrawLabel(mKindBar, mRegenerating ? "Regenerating ..." : "Generator");
|
DrawLabel(mKindBar, mRegenerating ? "Regenerating ..." : "Generator");
|
||||||
for (var uiEntry in mUIEntries)
|
for (var uiEntry in mUIEntries)
|
||||||
DrawLabel(uiEntry.mWidget, uiEntry.mLabel);
|
DrawLabel(uiEntry.mWidget, uiEntry.mLabel);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public override void DrawAll(Graphics g)
|
public override void DrawAll(Graphics g)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue