Subversion Repositories Kolibri OS

Rev

Rev 9439 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9439 Rev 9887
Line 161... Line 161...
161
	yyy = i*select_list.item_h+select_list.y;
161
	yyy = i*select_list.item_h+select_list.y;
Line 162... Line 162...
162
	
162
 
163
	if (select_list.cur_y-select_list.first==i)
163
	if (select_list.cur_y-select_list.first==i)
164
	{
164
	{
165
		DrawBar(select_list.x, yyy, select_list.w, select_list.item_h, sc.button);
165
		DrawBar(select_list.x, yyy, select_list.w, select_list.item_h, sc.button);
166
		WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,sc.button_text, ini_sections.get(i));
166
		WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,sc.button_text, ini_sections.get(i+select_list.first));
167
	}
167
	}
168
	else
168
	else
169
	{
169
	{
170
		DrawBar(select_list.x,yyy,select_list.w, select_list.item_h, 0xFFFfff);
170
		DrawBar(select_list.x,yyy,select_list.w, select_list.item_h, 0xFFFfff);
171
		WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,0, ini_sections.get(i));
171
		WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,0, ini_sections.get(i+select_list.first));
172
	}
172
	}
Line 173... Line 173...
173
}
173
}
174
 
174