Subversion Repositories Kolibri OS

Rev

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

Rev 7286 Rev 7291
Line 281... Line 281...
281
{
281
{
282
	if (kfont.size.height) && (style.body) {
282
	if (kfont.size.height) && (style.body) {
283
		kfont.bold = style.bold;
283
		kfont.bold = style.bold;
284
		canvas.write_text(draw.x, draw.y, style.color, text.start);
284
		canvas.write_text(draw.x, draw.y, style.color, text.start);
285
		if (style.a) {
285
		if (style.a) {
286
			canvas.draw_hor_line(draw.x+1, draw.y + list.item_h-2, kfont.get_label_width(text.start), style.color);
286
			canvas.draw_hor_line(draw.x, draw.y + list.item_h-1, kfont.get_label_width(text.start), style.color); 
-
 
287
			link.add(draw.x, draw.y, kfont.get_label_width(text.start), list.item_h, text.start, "http://kolibrios.org");
287
		}
288
		}
288
	}
289
	}
289
}
290
}
Line 290... Line 291...
290
 
291