mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-18 08:06:04 +02:00
Replace most hardcoded text colors the settings text color.
This commit is contained in:
parent
633fb97e68
commit
7033e2c61e
11 changed files with 39 additions and 24 deletions
|
@ -877,7 +877,7 @@ namespace IDE.ui
|
|||
// column header
|
||||
using (g.PushClip(0, 0, mWidth, GS!(mColumnHeaderHeight)))
|
||||
{
|
||||
using (g.PushColor(0xFFFFFFFF))
|
||||
using (g.PushColor(DarkTheme.COLOR_TEXT))
|
||||
{
|
||||
g.SetFont(mFont);
|
||||
float strViewColumnStart = GS!(mColumnDisplayStart) + mBytesPerDisplayLine*GS!(mColumnDisplayStride) + GS!(mStrViewDisplayStartOffset);
|
||||
|
@ -908,7 +908,7 @@ namespace IDE.ui
|
|||
float displayAdj = (float)(-mShowPositionDisplayOffset * lineSpacing);
|
||||
using (g.PushTranslate(0, displayAdj))
|
||||
{
|
||||
using (g.PushColor(0xFFFFFFFF))
|
||||
using (g.PushColor(DarkTheme.COLOR_TEXT))
|
||||
{
|
||||
//ulong lineStart = mCurPosition / mBytesPerDisplayLine;
|
||||
int lockSize = lineCount * mBytesPerDisplayLine;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue