diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-01 21:33:09 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-01 21:33:09 +0300 |
commit | 53bcaaee9acf14c4388427d9f11ce2985b95efc0 (patch) | |
tree | eb6cdb3e5a3527be94fab4f78d4890b4b2b4943a /plugins/NewStory | |
parent | 785527c5313f64f763f5e572e86dd2d0bb6ff5a0 (diff) |
NewStory: fix for Home button behavior
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/history_control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 7b63110505..c95a155fb8 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -758,7 +758,7 @@ void NewstoryListData::ScrollDown(int deltaY) void NewstoryListData::ScrollTop() { scrollTopItem = scrollTopPixel = 0; - FixScrollPosition(true); + FixScrollPosition(); InvalidateRect(m_hwnd, 0, FALSE); } |