Skip to content

Commit

Permalink
Shorter checkbox text
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jan 24, 2024
1 parent a8a7996 commit edd45c2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/egui/src/style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1602,10 +1602,7 @@ impl Interaction {
ui.horizontal(|ui| {
ui.checkbox(selectable_labels, "Selectable text in labels");
if *selectable_labels {
ui.checkbox(
multi_widget_text_select,
"Selectable text across multiple widgets",
);
ui.checkbox(multi_widget_text_select, "Across multiple labels");
}
});

Expand Down

0 comments on commit edd45c2

Please sign in to comment.