diff --git a/programs/cmm/dicty/dicty.c b/programs/cmm/dicty/dicty.c index eaf6dee729..0e303312d4 100644 --- a/programs/cmm/dicty/dicty.c +++ b/programs/cmm/dicty/dicty.c @@ -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); } diff --git a/programs/cmm/eolite/Eolite.c b/programs/cmm/eolite/Eolite.c index cf367ba067..7a2b6ef6a0 100644 --- a/programs/cmm/eolite/Eolite.c +++ b/programs/cmm/eolite/Eolite.c @@ -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 }