Removed TODOs that are now issues

This commit is contained in:
Jonathan Johnson 2023-12-20 11:03:48 -08:00
parent 9aaf22c903
commit 2575deecf8
No known key found for this signature in database
GPG key ID: A66D6A34D6620579
2 changed files with 0 additions and 2 deletions

View file

@ -490,7 +490,6 @@ impl Widget for Button {
_is_synthetic: bool,
context: &mut EventContext<'_, '_>,
) -> EventHandling {
// TODO should this be handled at the window level?
if input.text.as_deref() == Some(" ") && !context.modifiers().possible_shortcut() {
let changed = match input.state {
ElementState::Pressed => {

View file

@ -23,7 +23,6 @@ pub struct Stack {
pub gutter: Value<FlexibleDimension>,
layout: GridLayout,
layout_generation: Option<Generation>,
// TODO Refactor synced_children into its own type.
synced_children: Vec<MountedWidget>,
}