aboutsummaryrefslogtreecommitdiff
path: root/multimedia/lives/files
diff options
context:
space:
mode:
authorKoop Mast <kwm@FreeBSD.org>2015-08-05 07:24:59 +0000
committerKoop Mast <kwm@FreeBSD.org>2015-08-05 07:24:59 +0000
commita0c53ab7c80fff261e7723db6b3c659b9f636196 (patch)
treed4c540dce6a6f472275461ed436a9347090e28e1 /multimedia/lives/files
parent528d2a79ec7bb753f681a8c65678853c9ded387a (diff)
Notes
Diffstat (limited to 'multimedia/lives/files')
-rw-r--r--multimedia/lives/files/patch-src_widget-helper.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/multimedia/lives/files/patch-src_widget-helper.c b/multimedia/lives/files/patch-src_widget-helper.c
new file mode 100644
index 000000000000..5ef8ca8419a8
--- /dev/null
+++ b/multimedia/lives/files/patch-src_widget-helper.c
@@ -0,0 +1,11 @@
+--- src/widget-helper.c.orig 2015-08-05 09:16:34.803154000 +0200
++++ src/widget-helper.c 2015-08-05 09:16:59.890589000 +0200
+@@ -2404,7 +2404,7 @@
+ LIVES_INLINE boolean lives_label_set_halignment(LiVESLabel *label, float yalign) {
+ #ifdef GUI_GTK
+ #if GTK_CHECK_VERSION(3,16,0)
+- gtk_label_set_y_align(label,yalign);
++ gtk_label_set_yalign(label,yalign);
+ #else
+ gtk_misc_set_alignment(GTK_MISC(label),0.,yalign);
+ #endif