https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4420f4e0cad506c8b34e6d35bf36743546255df9

commit 4420f4e0cad506c8b34e6d35bf36743546255df9
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Mon Dec 2 18:04:41 2019 +0900
Commit:     GitHub <[email protected]>
CommitDate: Mon Dec 2 18:04:41 2019 +0900

    [CPL][INPUT] Fix bullet (#2124)
    
    CORE-13807
---
 dll/cpl/input/settings_page.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dll/cpl/input/settings_page.c b/dll/cpl/input/settings_page.c
index 8c093986475..28b9f9969db 100644
--- a/dll/cpl/input/settings_page.c
+++ b/dll/cpl/input/settings_page.c
@@ -64,7 +64,7 @@ CreateLayoutIcon(LPWSTR szLayout, BOOL bIsDefault)
                             ExtTextOutW(hdc, rect.left, rect.top, ETO_OPAQUE, 
&rect, L"", 0, NULL);
 
                             SelectObject(hdc, hFont);
-                            DrawTextW(hdc, L"\x2022", 1, &rect, DT_SINGLELINE 
| DT_CENTER | DT_VCENTER);
+                            DrawFrameControl(hdc, &rect, DFC_MENU, 
DFCS_MENUBULLET);
                         }
                         else
                         {

Reply via email to