diff options
author | Silas Bartha <silas@exvacuum.dev> | 2024-06-05 10:53:49 -0400 |
---|---|---|
committer | Silas Bartha <silas@exvacuum.dev> | 2024-06-05 10:54:40 -0400 |
commit | 2c44bf5efa1fa0894057eb4ed87dc88c9484c2e7 (patch) | |
tree | 8470eb1da103f5149ac9227d3b359637cf526c51 /src/lib.rs | |
parent | 8fe2406277eb11719a03122b82199c06e0f54ed0 (diff) |
Moved widget rendering back into display system
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -83,11 +83,7 @@ impl Plugin for TerminalDisplayPlugin { ( input::systems::input_handling, display::systems::resize_handling, - ( - display::systems::print_to_terminal, - widgets::systems::draw_widgets, - ) - .chain(), + display::systems::print_to_terminal, widgets::systems::widget_input_handling, ), ) |