We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c818bc commit 130385cCopy full SHA for 130385c
core/src/bitmap/bitmap_data.rs
@@ -626,6 +626,8 @@ impl<'gc> BitmapData<'gc> {
626
let bitmap_handle = renderer.register_bitmap(bitmap);
627
if let Err(e) = &bitmap_handle {
628
tracing::warn!("Failed to register raw bitmap for BitmapData: {:?}", e);
629
+ } else {
630
+ self.dirty_state = DirtyState::Clean;
631
}
632
self.bitmap_handle = bitmap_handle.ok();
633
0 commit comments