remove additional restriction which is only necessary in egui 0.15

This commit is contained in:
Marcel Märtens 2021-11-20 20:22:45 +01:00
parent aa93b4b53c
commit 7a8944ac71

View File

@ -27,11 +27,7 @@ pub(crate) fn filterable_list(
});
}
pub(crate) fn two_col_row(
ui: &mut Ui,
label: impl Into<Label> + core::fmt::Display,
content: impl Into<Label> + core::fmt::Display,
) {
pub(crate) fn two_col_row(ui: &mut Ui, label: impl Into<Label>, content: impl Into<Label>) {
ui.label(label);
ui.label(content);
ui.end_row();