View Issue Details

IDProjectCategoryView StatusLast Update
0004676NoesisGUIStudiopublic2026-01-07 10:30
Reportermaherne Assigned Tosfernandez  
PrioritynormalSeverityminor 
Status assignedResolutionopen 
Product VersionStudio_Beta 
Target VersionStudio_Beta 
Summary0004676: [BS2005] Crash when changing from a TintEffect which has an animated Color
Description

Reproduction and fix for crash BS2005: https://app.bugsplat.com/v2/crash?database=Noesis&id=2005

See attached video for reproduction steps, and the attached patch for a fix.

PlatformAny

Activities

maherne

maherne

2026-01-06 12:26

developer   ~0011678

Attached files failed to upload, with a server error. Attempting to upload attachments again.

TintEffect.cpp.patch (507 bytes)   
Index: TintEffect.cpp
===================================================================
--- TintEffect.cpp	(revision 16479)
+++ TintEffect.cpp	(working copy)
@@ -49,6 +49,7 @@
     auto OnColorChanged = [](DependencyObject* o, const DependencyPropertyChangedEventArgs& args)
     {
         TintEffect* this_ = DynamicCast<TintEffect*>(o);
+        if (this_ != nullptr)
         {
             this_->mConstants.color = args.NewValue<Color>();
             this_->InvalidateConstantBuffer();
TintEffect.cpp.patch (507 bytes)   

Issue History

Date Modified Username Field Change
2026-01-06 12:22 maherne New Issue
2026-01-06 12:26 maherne Note Added: 0011678
2026-01-06 12:26 maherne File Added: TintEffect.cpp.patch
2026-01-06 12:26 maherne File Added: TintCrash 2026-01-06 11-25-19.mp4
2026-01-06 12:27 maherne Target Version => Studio_Beta
2026-01-07 10:30 sfernandez Assigned To => sfernandez
2026-01-07 10:30 sfernandez Status new => assigned