From 86c2948eb4d4fa75e28182472094d0812fabb29e Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Wed, 9 Feb 2011 20:31:34 +0000 Subject: Fix copying text/plain to clipboard svn path=/trunk/netsurf/; revision=11636 --- cocoa/selection.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cocoa') diff --git a/cocoa/selection.m b/cocoa/selection.m index cb0c3dca9..208776ebb 100644 --- a/cocoa/selection.m +++ b/cocoa/selection.m @@ -72,9 +72,11 @@ static bool cocoa_clipboard_copy_handler(const char *text, size_t length, struct void *handle, const char *whitespace_text, size_t whitespace_length) { + bool add_space = box != NULL ? box->space : false; + if (whitespace_text && !gui_add_to_clipboard( whitespace_text, whitespace_length, false )) return false; - return gui_add_to_clipboard( text, length, box->space ); + return gui_add_to_clipboard( text, length, add_space ); } bool gui_commit_clipboard(void) -- cgit v1.2.3