From a1811d3eef319dafd1c108fc7b3fb18d870f3c82 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 13 Aug 2004 16:59:42 +0000 Subject: [project @ 2004-08-13 16:59:42 by jmb] Improve column spacing svn path=/import/netsurf/; revision=1223 --- riscos/debugwin.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'riscos/debugwin.c') diff --git a/riscos/debugwin.c b/riscos/debugwin.c index d1b692bb0..203f90a80 100644 --- a/riscos/debugwin.c +++ b/riscos/debugwin.c @@ -124,9 +124,9 @@ void ro_gui_debugwin_redraw_plot(wimp_draw *redraw) xwimptextop_paint(0, "url", x0 + 4, y0 - 20); xwimptextop_paint(0, "type", x0 + 600, y0 - 20); xwimptextop_paint(0, "fresh", x0 + 680, y0 - 20); - xwimptextop_paint(0, "mime_type", x0 + 750, y0 - 20); - xwimptextop_paint(0, "users", x0 + 880, y0 - 20); - xwimptextop_paint(0, "status", x0 + 950, y0 - 20); + xwimptextop_paint(0, "mime_type", x0 + 760, y0 - 20); + xwimptextop_paint(0, "users", x0 + 910, y0 - 20); + xwimptextop_paint(0, "status", x0 + 990, y0 - 20); xwimptextop_paint(0, "size", x0 + 1100, y0 - 20); xwimp_set_font_colours(wimp_COLOUR_BLACK, wimp_COLOUR_WHITE); @@ -140,14 +140,14 @@ void ro_gui_debugwin_redraw_plot(wimp_draw *redraw) x0 + 710, y); if (content->mime_type) xwimptextop_paint(0, content->mime_type, - x0 + 750, y); + x0 + 760, y); users = 0; for (user = content->user_list->next; user; user = user->next) users++; snprintf(s, sizeof s, "%u", users); - xwimptextop_paint(wimptextop_RJUSTIFY, s, x0 + 930, y); + xwimptextop_paint(wimptextop_RJUSTIFY, s, x0 + 960, y); xwimptextop_paint(0, content_status_name[content->status], - x0 + 950, y); + x0 + 990, y); snprintf(s, sizeof s, "%u", content->size); xwimptextop_paint(wimptextop_RJUSTIFY, s, x0 + 1190, y); size += content->size; -- cgit v1.2.3