1
0
Fork 0
forked from wry/wry

backend: take connector name from connector

This commit is contained in:
Julian Orth 2026-03-17 21:14:51 +01:00
parent d321e888be
commit 52b91654ca
3 changed files with 12 additions and 5 deletions

View file

@ -134,11 +134,11 @@ impl GpusPane {
.connectors
.lock()
.values()
.map(|v| v.connector.kernel_id().to_string())
.map(|v| v.name.clone())
.collect::<Vec<_>>();
cs.sort();
for c in cs {
ui.label(c);
ui.label(&**c);
}
});
});