Skip to content

Commit 8a3eb29

Browse files
committed
color info
1 parent 1821920 commit 8a3eb29

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

src/LogExpert.UI/Entities/PaintHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static void CellPainting (ILogPaintContextUI logPaintCtx, bool focused, i
7676
Alignment = StringAlignment.Center
7777
};
7878

79-
using var brush2 = new SolidBrush(Color.FromArgb(255, 190, 100, 0));
79+
using var brush2 = new SolidBrush(Color.FromArgb(255, 190, 100, 0)); //DarkOrange
8080
using var font = logPaintCtx.MonospacedFont;
8181
e.Graphics.DrawString("i", font, brush2, new RectangleF(r.Left, r.Top, r.Width, r.Height), format);
8282
}

src/LogExpert.UI/Interface/ILogPaintContextUI.cs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,26 @@ internal interface ILogPaintContextUI : ILogPaintContext
1212
#region Properties
1313

1414
Font MonospacedFont { get; } // Font font = new Font("Courier New", this.Preferences.fontSize, FontStyle.Bold);
15+
1516
Font NormalFont { get; }
17+
1618
Font BoldFont { get; }
19+
1720
Color BookmarkColor { get; }
1821

1922
#endregion
2023

2124
#region Public methods
2225

23-
ILogLine GetLogLine(int lineNum);
26+
ILogLine GetLogLine (int lineNum);
2427

25-
IColumn GetCellValue(int rowIndex, int columnIndex);
28+
IColumn GetCellValue (int rowIndex, int columnIndex);
2629

27-
Bookmark GetBookmarkForLine(int lineNum);
30+
Bookmark GetBookmarkForLine (int lineNum);
2831

29-
HighlightEntry FindHighlightEntry(ITextValue line, bool noWordMatches);
32+
HighlightEntry FindHighlightEntry (ITextValue line, bool noWordMatches);
3033

31-
IList<HighlightMatchEntry> FindHighlightMatches(ITextValue line);
34+
IList<HighlightMatchEntry> FindHighlightMatches (ITextValue line);
3235

3336
#endregion
3437
}

0 commit comments

Comments
 (0)