Skip to content

Commit

Permalink
Fixed typo in tkWinDraw.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
csaba committed Aug 9, 2024
1 parent a682923 commit 7846648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win/tkWinDraw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,7 @@ TkWinDrawDottedRect(
dc = TkWinGetDrawableDC(disp, d, &state);

lb.lbStyle = BS_SOLID;
lb.lbColor = pixel < 0 ? : RGB(0, 0, 0) : (COLORREF)pixel;
lb.lbColor = pixel < 0 ? RGB(0, 0, 0) : (COLORREF)pixel;
lb.lbHatch = 0;

if (pixel < 0) {
Expand Down

0 comments on commit 7846648

Please sign in to comment.