summaryrefslogtreecommitdiff
path: root/framebuffer/clipboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'framebuffer/clipboard.c')
-rw-r--r--framebuffer/clipboard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/framebuffer/clipboard.c b/framebuffer/clipboard.c
index d534cfe7a..85e6a1da2 100644
--- a/framebuffer/clipboard.c
+++ b/framebuffer/clipboard.c
@@ -69,7 +69,8 @@ bool gui_empty_clipboard(void)
* \return true iff successful
*/
-bool gui_add_to_clipboard(const char *text, size_t length, bool space)
+bool gui_add_to_clipboard(const char *text, size_t length, bool space,
+ const plot_font_style_t *fstyle)
{
size_t new_length = gui_clipboard.length + length + (space ? 1 : 0) + 1;