diff options
author | Zufu Liu <unknown> | 2024-05-09 11:33:05 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2024-05-09 11:33:05 +1000 |
commit | d37feef72ce5c132f8fc1cc2cbadf3ee027a5471 (patch) | |
tree | 212a3721d26742f718d343104d0a4519bbf5ab8d /win32/PlatWin.h | |
parent | b9e09f34badc402f80a4a53c507576affd97b8bc (diff) | |
download | scintilla-mirror-d37feef72ce5c132f8fc1cc2cbadf3ee027a5471.tar.gz |
Bug [#2321]. Scale reverse arrow cursor with Direct2D when enabled.
Implement arrow cursor colour choice.
React to most settings changes.
Diffstat (limited to 'win32/PlatWin.h')
-rw-r--r-- | win32/PlatWin.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win32/PlatWin.h b/win32/PlatWin.h index a901ec78d..ec1281979 100644 --- a/win32/PlatWin.h +++ b/win32/PlatWin.h @@ -50,8 +50,7 @@ float GetDeviceScaleFactorWhenGdiScalingActive(HWND hWnd) noexcept; int SystemMetricsForDpi(int nIndex, UINT dpi) noexcept; -constexpr int defaultCursorBaseSize = 32; -HCURSOR LoadReverseArrowCursor(UINT dpi, int cursorBaseSize) noexcept; +HCURSOR LoadReverseArrowCursor(UINT dpi) noexcept; class MouseWheelDelta { int wheelDelta = 0; |