From b2a5ded9294b3bf26438710526ca168221f111a2 Mon Sep 17 00:00:00 2001 From: Andrew Lanzone Date: Fri, 6 Jun 2025 00:34:23 -0700 Subject: [PATCH] Fix scrolling list of items to repair or recharge --- apps/openmw/mwgui/itemchargeview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw/mwgui/itemchargeview.cpp b/apps/openmw/mwgui/itemchargeview.cpp index 4ac59642ea..0b9ea842d9 100644 --- a/apps/openmw/mwgui/itemchargeview.cpp +++ b/apps/openmw/mwgui/itemchargeview.cpp @@ -283,7 +283,7 @@ namespace MWGui if (newFocus <= 3) mScrollView->setViewOffset(MyGUI::IntPoint(0, 0)); else - mScrollView->setViewOffset(MyGUI::IntPoint(-55 * (newFocus - 3), 0)); + mScrollView->setViewOffset(MyGUI::IntPoint(0, -55 * (newFocus - 3))); } } }