From 73b13bff1227ce46588589fc8931274d83bfe1fd Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Fri, 23 Jun 2006 22:42:31 +0000 Subject: Add workaround to bug in Pinboard not displaying some windows when iconised svn path=/trunk/netsurf/; revision=2641 --- riscos/window.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'riscos') diff --git a/riscos/window.c b/riscos/window.c index 580aa9f25..9d65164e6 100644 --- a/riscos/window.c +++ b/riscos/window.c @@ -3078,6 +3078,15 @@ void ro_gui_window_iconise(struct gui_window *g, wimp_full_message_window_info * strncpy(wi->title, g->title, sizeof(wi->title)); wi->title[sizeof(wi->title) - 1] = '\0'; + if (wimptextop_string_width(wi->title, 0) > 128) { + /* work around bug in Pinboard where it will fail to display + * the icon if the text is very wide */ + if (strlen(wi->title) > 10) + wi->title[10] = '\0'; /* pinboard does this anyway */ + while (wimptextop_string_width(wi->title, 0) > 182) + wi->title[strlen(wi->title) - 1] = '\0'; + } + wi->size = sizeof(wimp_full_message_window_info); wi->your_ref = wi->my_ref; error = xwimp_send_message(wimp_USER_MESSAGE, (wimp_message*)wi, wi->sender); -- cgit v1.2.3