From b1823f8b4669912eea8630f0ef3a1de14ece3d92 Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Sun, 30 Mar 2003 19:14:00 +0000 Subject: [PATCH] Applied patch [ 702254 ] Life: Fix to page scrolling from Hugh Gibson. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19879 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- demos/life/life.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/life/life.cpp b/demos/life/life.cpp index 7f14638a7a..b6d1a7ae58 100644 --- a/demos/life/life.cpp +++ b/demos/life/life.cpp @@ -1057,7 +1057,7 @@ void LifeCanvas::OnScroll(wxScrollWinEvent& event) else if (type == wxEVT_SCROLLWIN_PAGEDOWN) { - scrollinc = -10; + scrollinc = +10; } else if (type == wxEVT_SCROLLWIN_THUMBTRACK) -- 2.50.0