1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

separator & checkbox style request fix

This commit is contained in:
adrien
2026-06-24 19:38:15 +02:00
parent 63eacb1800
commit ee23a6e9e9
2 changed files with 0 additions and 5 deletions

View File

@@ -70,9 +70,6 @@ impl Widget for Checkbox<'_> {
// Get the widget style by reading the response from the previous pass
let id = ui.next_auto_id();
let response: Option<Response> = ui.ctx().read_response(id);
let state = response.map(|r| r.widget_state()).unwrap_or_default();
let CheckboxStyle {
check_size,
checkbox_frame,

View File

@@ -101,8 +101,6 @@ impl Widget for Separator {
// Get the widget style by reading the response from the previous pass
let id = ui.next_auto_id();
let response: Option<Response> = ui.ctx().read_response(id);
let state = response.map(|r| r.widget_state()).unwrap_or_default();
let SeparatorStyle {
spacing: spacing_style,
stroke,