eolite: update

git-svn-id: svn://kolibrios.org@8779 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2021-06-07 20:03:19 +00:00
parent e07b65f95a
commit 95f1cee2c6
6 changed files with 40 additions and 25 deletions

View File

@@ -37,14 +37,20 @@ signed SelectList_ProcessMouse()
{
select_list.first = scroll1.position;
SelectList_Draw();
return true;
}
if (mouse.vert) && (select_list.MouseScroll(mouse.vert)) SelectList_Draw();
if (mouse.vert) && (select_list.MouseScroll(mouse.vert)) {
SelectList_Draw();
return true;
}
if (mouse.up) && (mouse.lkm)
if (select_list.ProcessMouse(mouse.x, mouse.y)) {
SelectList_LineChanged();
return true;
}
return false;
}
void SelectList_DrawBorder() {