forked from KolibriOS/kolibrios
Small fixes. Dicty: removed debug messages. Eolite: fix color of list columns separation line.
git-svn-id: svn://kolibrios.org@6949 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
5e5c753d2f
commit
fe0dae0c76
@ -161,7 +161,6 @@ void DrawTranslation()
|
||||
strttl(#draw_buf);
|
||||
WriteTextB(10+1, y_pos+8, 10000001b, 0x800080, #search_word);
|
||||
|
||||
debugln(#draw_buf);
|
||||
DrawTextViewArea(10, y_pos+31, Form.cwidth-20, Form.cheight-30,
|
||||
#draw_buf, -1, 0x000000);
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ enum {
|
||||
ONLY_OPEN
|
||||
};
|
||||
|
||||
dword col_padding, col_selec, col_lpanel, col_work, col_graph;
|
||||
dword col_padding, col_selec, col_lpanel, col_work, col_graph, col_list_line=0xDDD7CF;
|
||||
|
||||
int toolbar_buttons_x[7]={9,46,85,134,167,203};
|
||||
|
||||
@ -662,8 +662,8 @@ void List_ReDraw()
|
||||
//in the bottom
|
||||
all_lines_h = j * files.item_h;
|
||||
DrawBar(files.x,all_lines_h + files.y,files.w,files.h - all_lines_h,0xFFFFFF);
|
||||
DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h,system.color.work);
|
||||
DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h,system.color.work);
|
||||
DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
|
||||
DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
|
||||
Scroll();
|
||||
}
|
||||
|
||||
@ -742,8 +742,8 @@ void Line_ReDraw(dword bgcol, filenum){
|
||||
}
|
||||
kfont.WriteIntoWindow(files.x + 23, files.item_h - kfont.height / 2 + y, bgcol, text_col, kfont.size.pt, #label_file_name);
|
||||
}
|
||||
DrawBar(files.x+files.w-141,y,1,files.item_h,system.color.work); //gray line 1
|
||||
DrawBar(files.x+files.w-68,y,1,files.item_h,system.color.work); //gray line 2
|
||||
DrawBar(files.x+files.w-141,y,1,files.item_h,col_list_line); //gray line 1
|
||||
DrawBar(files.x+files.w-68,y,1,files.item_h,col_list_line); //gray line 2
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user