Skip to content

Commit

Permalink
improve radio buttons of dict dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed Apr 4, 2024
1 parent 3a6343d commit feecdf6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions XgDictList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ HIMAGELIST XgDictList_CreateRadioButtonImageList(HWND hwnd)

// チェック済みのアイコンを追加。
SelectObject(hdc, hbm_im);
SelectObject(hdc, GetSysColorBrush(COLOR_WINDOW));
Ellipse(hdc, rc.left, rc.top, rc.right, rc.bottom);
InflateRect(&rc, -3, -3);
SelectObject(hdc, GetSysColorBrush(COLOR_WINDOWTEXT));
Ellipse(hdc, rc.left, rc.top, rc.right, rc.bottom);
SelectObject(hdc, hbm_orig);
Expand Down

0 comments on commit feecdf6

Please sign in to comment.