Subversion Repositories Kolibri OS

Rev

Rev 7984 | Rev 8933 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7984 Rev 8779
Line 35... Line 35...
35
	scrollbar_v_mouse (#scroll1);
35
	scrollbar_v_mouse (#scroll1);
36
	if (select_list.first != scroll1.position)
36
	if (select_list.first != scroll1.position)
37
	{
37
	{
38
		select_list.first = scroll1.position;
38
		select_list.first = scroll1.position;
39
		SelectList_Draw();
39
		SelectList_Draw();
-
 
40
		return true;
40
	}
41
	}
Line 41... Line 42...
41
	
42
	
-
 
43
	if (mouse.vert) && (select_list.MouseScroll(mouse.vert)) {
-
 
44
		SelectList_Draw();
-
 
45
		return true;
Line 42... Line 46...
42
	if (mouse.vert) && (select_list.MouseScroll(mouse.vert)) SelectList_Draw();
46
	}
43
 
47
 
44
	if (mouse.up) && (mouse.lkm) 
48
	if (mouse.up) && (mouse.lkm) 
-
 
49
		if (select_list.ProcessMouse(mouse.x, mouse.y)) {
45
		if (select_list.ProcessMouse(mouse.x, mouse.y)) {
50
			SelectList_LineChanged();
-
 
51
			return true;
46
			SelectList_LineChanged();
52
		}
Line 47... Line 53...
47
		}
53
	return false;
48
}
54
}
49
 
55