1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00

Some minor changes to MWList

This commit is contained in:
Stanislav Bas 2015-06-02 11:55:09 +03:00
parent 959fe3eb87
commit 6cb221f8d0

View File

@ -48,7 +48,7 @@ namespace Gui
const int _scrollBarWidth = 20; // fetch this from skin?
const int scrollBarWidth = scrollbarShown ? _scrollBarWidth : 0;
const int spacing = 3;
int viewPosition = mScrollView->getViewOffset().top;
int viewPosition = -mScrollView->getViewOffset().top;
while (mScrollView->getChildCount())
{
@ -102,7 +102,7 @@ namespace Gui
int viewRange = mScrollView->getCanvasSize().height;
if(viewPosition > viewRange)
viewPosition = viewRange;
mScrollView->setViewOffset(MyGUI::IntPoint(0, viewPosition));
mScrollView->setViewOffset(MyGUI::IntPoint(0, -viewPosition));
}
void MWList::setPropertyOverride(const std::string &_key, const std::string &_value)