Commit f962a792 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Always repaint scroll bar if requested.

parent 3baa9b99
...@@ -1543,7 +1543,7 @@ BOOL bRedraw /* [in] Should scrollbar be redrawn afterwards ? */) ...@@ -1543,7 +1543,7 @@ BOOL bRedraw /* [in] Should scrollbar be redrawn afterwards ? */)
if( SCROLL_ShowScrollBar( hwnd, nBar, TRUE, TRUE ) ) if( SCROLL_ShowScrollBar( hwnd, nBar, TRUE, TRUE ) )
return retVal; /* SetWindowPos() already did the painting */ return retVal; /* SetWindowPos() already did the painting */
if( bRedraw && (action & SA_SSI_REFRESH)) if( bRedraw )
SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE ); SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
else if( action & SA_SSI_REPAINT_ARROWS ) else if( action & SA_SSI_REPAINT_ARROWS )
SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, FALSE ); SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, FALSE );
......
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