blob: 9f1055651fe5bd73ed3450c9a656b99883a8880b [file] [log] [blame] [edit]
#include <sstream>
#include <iomanip>
#include <array>
#include "rive/viewmodel/viewmodel_instance_string.hpp"
#include "rive/component_dirt.hpp"
using namespace rive;
void ViewModelInstanceString::propertyValueChanged()
{
addDirt(ComponentDirt::Bindings);
#ifdef WITH_RIVE_TOOLS
if (m_changedCallback != nullptr)
{
m_changedCallback(this, propertyValue().c_str());
}
#endif
onValueChanged();
}