Skip to content

Commit

Permalink
audio/soundtracker: Backport the bugfix patch from the upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
yurivict committed May 18, 2021
1 parent 26db8f6 commit 5dddc26
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions audio/soundtracker/Makefile
@@ -1,5 +1,6 @@
PORTNAME= soundtracker
DISTVERSION= 1.0.2
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= SF/${PORTNAME}/

Expand Down
13 changes: 13 additions & 0 deletions audio/soundtracker/files/patch-app_gui-subs.h
@@ -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);

0 comments on commit 5dddc26

Please sign in to comment.