tiling: Add code to render group hints

This commit is contained in:
Victoria Brekenfeld 2023-05-17 19:46:21 +02:00
parent 84b3213146
commit 4ea0136a9b
8 changed files with 739 additions and 276 deletions

View file

@ -52,9 +52,9 @@ impl From<KeyboardFocusTarget> for PointerFocusTarget {
#[derive(Debug, Clone)]
pub struct WindowGroup {
pub(in crate::shell) node: NodeId,
pub(in crate::shell) output: WeakOutput,
pub(in crate::shell) alive: Weak<()>,
pub node: NodeId,
pub output: WeakOutput,
pub alive: Weak<()>,
}
impl PartialEq for WindowGroup {