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:
Kirill Lipatov (Leency) 2017-09-05 13:38:37 +00:00
parent 5e5c753d2f
commit fe0dae0c76
2 changed files with 5 additions and 6 deletions

View File

@ -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);
}

View File

@ -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
}