0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00

Revert "[draw] Set margin also for frames"

This reverts commit b9348af7e086e77b015bc630cf3518eb75256936.
This commit is contained in:
Witold Filipczyk 2025-01-13 17:10:26 +01:00
parent b9348af7e0
commit f0fb1584f9
2 changed files with 7 additions and 7 deletions

View File

@ -227,7 +227,7 @@ format_frames(struct session *ses, struct frameset_desc *fsd,
copy_struct(&o, op);
//o.margin = !!o.margin;
o.margin = !!o.margin;
n = 0;
for (j = 0; j < fsd->box.height; j++) {

View File

@ -293,7 +293,7 @@ check_link_under_cursor(struct session *ses, struct document_view *doc_view)
* @a active indicates whether the document is focused -- i.e.,
* whether it is displayed in the selected frame or document. */
static void
draw_doc(struct session *ses, struct document_view *doc_view, int active, int frames)
draw_doc(struct session *ses, struct document_view *doc_view, int active)
{
struct color_pair color;
struct view_state *vs;
@ -316,7 +316,7 @@ draw_doc(struct session *ses, struct document_view *doc_view, int active, int fr
int margin = doc_view->document->options.margin;
box->x += margin;
if (!frames && box->width > 2 * margin) {
if (box->width > 2 * margin) {
box->width -= 2 * margin;
}
}
@ -565,7 +565,7 @@ draw_frames(struct session *ses)
foreach (doc_view, ses->scrn_frames) {
if (doc_view->depth == d)
draw_doc(ses, doc_view, doc_view == current_doc_view, 1);
draw_doc(ses, doc_view, doc_view == current_doc_view);
else if (doc_view->depth > d)
more = 1;
}
@ -592,7 +592,7 @@ draw_iframes(struct session *ses)
current_doc_view = current_frame(ses);
foreach (doc_view, ses->scrn_iframes) {
draw_doc(ses, doc_view, doc_view == current_doc_view, 1);
draw_doc(ses, doc_view, doc_view == current_doc_view);
}
}
@ -653,12 +653,12 @@ refresh_view(struct session *ses, struct document_view *doc_view, int frames)
#ifdef CONFIG_LIBDOM
//scan_document(doc_view->parent_doc_view);
#endif
draw_doc(ses, doc_view->parent_doc_view, 0, 0);
draw_doc(ses, doc_view->parent_doc_view, 0);
} else {
#ifdef CONFIG_LIBDOM
//scan_document(doc_view);
#endif
draw_doc(ses, doc_view, 1, 0);
draw_doc(ses, doc_view, 1);
}
if (frames) draw_frames(ses);
draw_iframes(ses);