mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 10:58:04 +08:00
* gray background for viewport texture * cust copy paste support * connect clipboard read on web * fix eyedropper bounds * cleanup * add missing char events for some named keys like enter
22 lines
437 B
Rust
22 lines
437 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 clipboard;
|
|
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 menu_bar;
|
|
pub mod message;
|
|
pub mod portfolio;
|
|
pub mod preferences;
|
|
pub mod prelude;
|
|
pub mod tool;
|
|
pub mod viewport;
|