Skip to content

Commit

Permalink
Print .tiling in workspaces example
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Jan 10, 2024
1 parent 1dfdd3e commit 490d55f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client-toolkit/examples/workspaces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,12 @@ impl WorkspaceHandler for AppData {
);
for workspace in &group.workspaces {
println!(
" Workspace: name: {}, coordinates: {:?}, capabilties: {:?}, state: {:?}",
" Workspace: name: {}, coordinates: {:?}, capabilties: {:?}, state: {:?}, tiling: {:?}",
&workspace.name,
&workspace.coordinates,
&workspace.capabilities,
&workspace.state
&workspace.state,
&workspace.tiling,
);
}
}
Expand Down

0 comments on commit 490d55f

Please sign in to comment.