[AGS] Fixes, BT apparently crashing

This commit is contained in:
2025-04-26 21:00:01 +02:00
parent 1a4610a2d6
commit f4b58b08ba
4 changed files with 35 additions and 18 deletions

View File

@@ -121,11 +121,15 @@ const WindowPopoverBox = () => {
<box vertical>
{bind(hypr, 'clients').as(clients => {
return clients.map(client => {
return <box>
<label label={bind(client, 'workspace').as(w => `(WS ${w.name})`)}></label>
<label label={bind(client, 'initialClass').as(c => `[${c}]`)}></label>
<label label={bind(client, 'title')}></label>
</box>
return <button child={
<box>
<label label={bind(client, 'workspace').as(w => `(WS ${w.name})`)}></label>
<label label={bind(client, 'initialClass').as(c => `[${c}]`)}></label>
<label label={bind(client, 'title')}></label>
</box>
}
onClicked={() => client.focus()}
></button>
})
})}
</box>