cmm: mass renaming

git-svn-id: svn://kolibrios.org@9602 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2022-01-09 06:36:16 +00:00
parent 61980e7ae3
commit 36e64a3f84
43 changed files with 169 additions and 174 deletions

View File

@@ -55,15 +55,15 @@ signed SelectList_ProcessMouse()
void SelectList_DrawBorder() {
DrawRectangle3D(select_list.x-2, select_list.y-2,
select_list.w+3+scroll1.size_x, select_list.h+3,
sc.work_dark, sc.work_light);
DrawRectangle(select_list.x-1, select_list.y-1, select_list.w+1+scroll1.size_x, select_list.h+1, sc.work_graph);
sc.dark, sc.light);
DrawRectangle(select_list.x-1, select_list.y-1, select_list.w+1+scroll1.size_x, select_list.h+1, sc.line);
}
void SelectList_DrawScroller()
{
scroll1.bckg_col = MixColors(sc.work, 0xBBBbbb, 80);
scroll1.frnt_col = MixColors(sc.work,0xFFFfff,120);
scroll1.line_col = sc.work_graph;
scroll1.line_col = sc.line;
scroll1.max_area = select_list.count;
scroll1.cur_area = select_list.visible;