From 26f2b4944734a5d7fed5cd5309646a1c4727778f Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Fri, 8 Sep 2006 13:31:43 +0000 Subject: Fix icon sizing svn path=/trunk/netsurf/; revision=2929 --- riscos/query.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'riscos/query.c') diff --git a/riscos/query.c b/riscos/query.c index 9320c4c0c..b2a51c372 100644 --- a/riscos/query.c +++ b/riscos/query.c @@ -133,10 +133,9 @@ query_id query_user(const char *query, const char *detail, width = len * 16; } if (!query_yes_width) query_yes_width = icn->extent.x1 - icn->extent.x0; + width += 44; if (width < query_yes_width) width = query_yes_width; - else - width += 44; icn->extent.x0 = x = icn->extent.x1 - width; /* set the text of the 'No' button and size accordingly */ @@ -153,10 +152,9 @@ query_id query_user(const char *query, const char *detail, error->errnum, error->errmess)); width = len * 16; } + width += 28; if (width < query_no_width) width = query_no_width; - else - width += 28; icn->extent.x0 = icn->extent.x1 - width; error = xwimp_create_window(query_template, &qw->window); -- cgit v1.2.3