Skip to content

Commit

Permalink
- fix dynamically changing filmstrips not updating sliders & buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Jan 28, 2025
1 parent ca06fcb commit 04c8d6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion currentGitHash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
39f2d4e5464b56d5342fde77c5d6567d4b519373
ca06fcb9f0e27fdb7be45e9de968c5f85832e386
2 changes: 1 addition & 1 deletion hi_backend/backend/currentGit.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define PREVIOUS_HISE_COMMIT "39f2d4e5464b56d5342fde77c5d6567d4b519373"
#define PREVIOUS_HISE_COMMIT "ca06fcb9f0e27fdb7be45e9de968c5f85832e386"
4 changes: 2 additions & 2 deletions hi_scripting/scripting/api/ScriptingApiContent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2059,13 +2059,13 @@ void ScriptingApi::Content::ScriptSlider::setScriptObjectPropertyWithChangeMessa

if (newValue == "Use default skin" || newValue == "")
{
setScriptObjectProperty(filmstripImage, "Use default skin");
setScriptObjectProperty(filmstripImage, "Use default skin", sendNotification);

image.clear();
}
else
{
setScriptObjectProperty(filmstripImage, newValue);
setScriptObjectProperty(filmstripImage, newValue, sendNotification);

PoolReference ref(getProcessor()->getMainController(), newValue.toString(), ProjectHandler::SubDirectories::Images);

Expand Down

0 comments on commit 04c8d6c

Please sign in to comment.