Subversion Repositories Kolibri OS

Rev

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

Rev 7639 Rev 7640
Line 51... Line 51...
51
}
51
}
Line 52... Line 52...
52
 
52
 
53
void SelectList_DrawBorder() {
53
void SelectList_DrawBorder() {
54
	DrawRectangle3D(select_list.x-2, select_list.y-2,
54
	DrawRectangle3D(select_list.x-2, select_list.y-2,
55
		select_list.w+3+scroll1.size_x, select_list.h+3, 
55
		select_list.w+3+scroll1.size_x, select_list.h+3, 
56
		MixColors(system.color.work, system.color.work_dark, 125), 
-
 
57
		system.color.work_light);
56
		system.color.work_dark, system.color.work_light);
58
	DrawRectangle(select_list.x-1, select_list.y-1, select_list.w+1+scroll1.size_x, select_list.h+1, system.color.work_graph);
57
	DrawRectangle(select_list.x-1, select_list.y-1, select_list.w+1+scroll1.size_x, select_list.h+1, system.color.work_graph);
Line 59... Line 58...
59
}
58
}
60
 
59