1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

audio/soundtracker: Backport the bugfix patch from the upstream

This commit is contained in:
Yuri Victorovich 2021-05-18 11:43:56 -07:00
parent 26db8f6e8b
commit 5dddc26f3e
2 changed files with 14 additions and 0 deletions

View File

@ -1,5 +1,6 @@
PORTNAME= soundtracker
DISTVERSION= 1.0.2
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= SF/${PORTNAME}/

View File

@ -0,0 +1,13 @@
- bugfix patch from the upstream
--- app/gui-subs.h.orig 2021-05-18 18:36:26 UTC
+++ app/gui-subs.h
@@ -151,7 +151,7 @@ gui_subs_create_slider(const gchar* title,
GtkAdjustment** adj,
gboolean in_mainwindow)
{
- return gui_subs_create_slider(title, min, max, changedfunc, adj, in_mainwindow);
+ return gui_subs_create_slider_full(title, min, max, changedfunc, adj, in_mainwindow, NULL);
}
GtkWidget* gui_combo_new(GtkListStore* ls);