mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
[text] removed commented code
This commit is contained in:
parent
afa50fe6ae
commit
efe2979ca8
@ -397,10 +397,6 @@ dlg_format_text(struct dialog_data *dlg_data,
|
|||||||
widget_data->info.text.current = 0;
|
widget_data->info.text.current = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// dlg_format_text_do(dlg_data, text,
|
|
||||||
// x, y, width, real_width,
|
|
||||||
// get_bfu_color(term, "dialog.text"),
|
|
||||||
// widget_data->widget->info.text.align, format_only);
|
|
||||||
dlg_format_text_do_node(dlg_data, text,
|
dlg_format_text_do_node(dlg_data, text,
|
||||||
x, y, width, real_width,
|
x, y, width, real_width,
|
||||||
get_bfu_color_node(term, "dialog.text"),
|
get_bfu_color_node(term, "dialog.text"),
|
||||||
@ -430,8 +426,6 @@ display_text(struct dialog_data *dlg_data, struct widget_data *widget_data)
|
|||||||
if (!text_is_scrollable(widget_data) || box.height <= 0)
|
if (!text_is_scrollable(widget_data) || box.height <= 0)
|
||||||
return EVENT_PROCESSED;
|
return EVENT_PROCESSED;
|
||||||
|
|
||||||
// draw_box(win->term, &box, ' ', 0,
|
|
||||||
// get_bfu_color(win->term, "dialog.scrollbar"));
|
|
||||||
draw_box_node(win->term, &box, ' ', 0,
|
draw_box_node(win->term, &box, ' ', 0,
|
||||||
get_bfu_color_node(win->term, "dialog.scrollbar"));
|
get_bfu_color_node(win->term, "dialog.scrollbar"));
|
||||||
|
|
||||||
@ -459,8 +453,6 @@ display_text(struct dialog_data *dlg_data, struct widget_data *widget_data)
|
|||||||
widget_data->info.text.scroller_y = box.y;
|
widget_data->info.text.scroller_y = box.y;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// draw_box(win->term, &box, ' ', 0,
|
|
||||||
// get_bfu_color(win->term, "dialog.scrollbar-selected"));
|
|
||||||
draw_box_node(win->term, &box, ' ', 0,
|
draw_box_node(win->term, &box, ' ', 0,
|
||||||
get_bfu_color_node(win->term, "dialog.scrollbar-selected"));
|
get_bfu_color_node(win->term, "dialog.scrollbar-selected"));
|
||||||
|
|
||||||
@ -491,8 +483,6 @@ format_and_display_text(struct widget_data *widget_data,
|
|||||||
|
|
||||||
widget_data->info.text.current = current;
|
widget_data->info.text.current = current;
|
||||||
|
|
||||||
// draw_box(term, &widget_data->box, ' ', 0,
|
|
||||||
// get_bfu_color(term, "dialog.generic"));
|
|
||||||
draw_box_node(term, &widget_data->box, ' ', 0,
|
draw_box_node(term, &widget_data->box, ' ', 0,
|
||||||
get_bfu_color_node(term, "dialog.generic"));
|
get_bfu_color_node(term, "dialog.generic"));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user