Invalidate text uploads after atlas trimming

This commit is contained in:
Héctor Ramón Jiménez 2024-04-30 21:59:46 +02:00
parent cfe4ddb866
commit c51b85e7ab
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
4 changed files with 30 additions and 13 deletions

View file

@ -10,3 +10,4 @@ iced.workspace = true
iced.features = ["canvas", "tokio", "debug"]
rand = "0.8"
tracing-subscriber = "0.3"

View file

@ -9,6 +9,8 @@ use iced::{
use std::cell::RefCell;
pub fn main() -> iced::Result {
tracing_subscriber::fmt::init();
iced::program("The Matrix - Iced", TheMatrix::update, TheMatrix::view)
.subscription(TheMatrix::subscription)
.antialiasing(true)