Skip to content

Commit fbeb8e1

Browse files
committed
Fix response handling.
1 parent 5a291d5 commit fbeb8e1

File tree

2 files changed

+10
-19
lines changed

2 files changed

+10
-19
lines changed

src/schematic.rs

+7-10
Original file line numberDiff line numberDiff line change
@@ -744,13 +744,12 @@ impl<'a> egui::Widget for SchematicWidget<'a> {
744744
textnum: i,
745745
});
746746
}
747-
response.context_menu(|ui| {
747+
let r = response.context_menu(|ui| {
748748
if ui.button("Properties").clicked() {
749749
ui.close_menu();
750750
}
751751
});
752-
// TODO check this for correctness
753-
response
752+
r.map(|r|r.response).or(Some(response)).unwrap()
754753
}
755754
MouseMode::TextDrag => {
756755
if response.clicked() {
@@ -768,13 +767,12 @@ impl<'a> egui::Widget for SchematicWidget<'a> {
768767
};
769768
actions.push(a);
770769
}
771-
response.context_menu(|ui| {
770+
let r = response.context_menu(|ui| {
772771
if ui.button("Properties").clicked() {
773772
ui.close_menu();
774773
}
775774
});
776-
// TODO check this for correctness
777-
response
775+
r.map(|r|r.response).or(Some(response)).unwrap()
778776
}
779777
};
780778
pr = pr.union(response);
@@ -864,7 +862,7 @@ impl<'a> egui::Widget for SchematicWidget<'a> {
864862
self.sch.schematic_log.apply(&mut self.sch.schematic, a);
865863
}
866864

867-
let pr = pr.context_menu(|ui| {
865+
let ipr = pr.context_menu(|ui| {
868866
if ui.button("Do a thing").clicked() {
869867
ui.close_menu();
870868
}
@@ -881,8 +879,7 @@ impl<'a> egui::Widget for SchematicWidget<'a> {
881879
focusable: true,
882880
},
883881
);
884-
//pr.union(response)
885-
//TODO fix this
886-
response
882+
883+
pr
887884
}
888885
}

src/symbol.rs

+3-9
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,6 @@ impl<'a> egui::Widget for SymbolDefinitionWidget<'a> {
353353
ui.close_menu();
354354
}
355355
});
356-
//TODO check this for correctness
357356
response
358357
}
359358
MouseMode::TextDrag => {
@@ -375,7 +374,6 @@ impl<'a> egui::Widget for SymbolDefinitionWidget<'a> {
375374
ui.close_menu();
376375
}
377376
});
378-
//TODO check this for correctness
379377
response
380378
}
381379
};
@@ -405,7 +403,6 @@ impl<'a> egui::Widget for SymbolDefinitionWidget<'a> {
405403
ui.close_menu();
406404
}
407405
});
408-
// TODO check this for correctness
409406
response
410407
}
411408
MouseMode::TextDrag => {
@@ -414,22 +411,21 @@ impl<'a> egui::Widget for SymbolDefinitionWidget<'a> {
414411
ui.close_menu();
415412
}
416413
});
417-
//TODO check this for correctness
418414
response
419415
}
420416
};
421417
pr = pr.union(response);
422418
}
423419

424-
let pr = pr.context_menu(|ui| {
420+
let ipr = pr.context_menu(|ui| {
425421
if ui.button("Do a thing").clicked() {
426422
ui.close_menu();
427423
}
428424
if ui.button("Close the menu").clicked() {
429425
ui.close_menu();
430426
}
431427
});
432-
if let Some(pr) = pr {
428+
if let Some(pr) = ipr {
433429
let pos = ui.input(|i| i.pointer.interact_pos());
434430
if let Some(pos) = pos {
435431
let pos2 = pos - zoom_origin.to_vec2();
@@ -483,9 +479,7 @@ impl<'a> egui::Widget for SymbolDefinitionWidget<'a> {
483479
}
484480

485481
let (_area, response) = ui.allocate_exact_size(size, sense);
486-
//pr.union(response)
487-
//TODO fix this
488-
response
482+
pr.union(response)
489483
}
490484
}
491485

0 commit comments

Comments
 (0)