mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
remove additional restriction which is only necessary in egui 0.15
This commit is contained in:
parent
aa93b4b53c
commit
7a8944ac71
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user