mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
* Add Handler for defered execution of messages * Cleanup * Track graph execution id to associate messages with their corresponding execution id * Rename ViewportReady -> NavigationReady * Defer layer deselection
20 lines
401 B
Rust
20 lines
401 B
Rust
//! The root-level messages forming the first layer of the message system architecture.
|
|
|
|
pub mod animation;
|
|
pub mod app_window;
|
|
pub mod broadcast;
|
|
pub mod debug;
|
|
pub mod defer;
|
|
pub mod dialog;
|
|
pub mod frontend;
|
|
pub mod globals;
|
|
pub mod input_mapper;
|
|
pub mod input_preprocessor;
|
|
pub mod layout;
|
|
pub mod message;
|
|
pub mod portfolio;
|
|
pub mod preferences;
|
|
pub mod prelude;
|
|
pub mod tool;
|
|
pub mod workspace;
|