Commit 9f295f12 authored by Pierre Mageau's avatar Pierre Mageau Committed by Alexandre Julliard

Added the functionality of the thumb track.

parent 73a26fa4
...@@ -5852,7 +5852,8 @@ static LRESULT LISTVIEW_VScroll(HWND hwnd, INT nScrollCode, SHORT nCurrentPos, ...@@ -5852,7 +5852,8 @@ static LRESULT LISTVIEW_VScroll(HWND hwnd, INT nScrollCode, SHORT nCurrentPos,
} }
break; break;
case SB_THUMBPOSITION: case SB_THUMBTRACK:
scrollInfo.nPos = nCurrentPos;
break; break;
} }
...@@ -5961,7 +5962,8 @@ static LRESULT LISTVIEW_HScroll(HWND hwnd, INT nScrollCode, SHORT nCurrentPos, ...@@ -5961,7 +5962,8 @@ static LRESULT LISTVIEW_HScroll(HWND hwnd, INT nScrollCode, SHORT nCurrentPos,
} }
break; break;
case SB_THUMBPOSITION: case SB_THUMBTRACK:
scrollInfo.nPos = nCurrentPos;
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment