aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/layer/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/layer/mod.rs b/src/layer/mod.rs
index 4d4d7819..72e804d5 100644
--- a/src/layer/mod.rs
+++ b/src/layer/mod.rs
@@ -8,9 +8,10 @@ pub use mapped::MappedLayer;
/// Rules fully resolved for a layer-shell surface.
#[derive(Debug, PartialEq)]
pub struct ResolvedLayerRules {
- /// Extra opacity to draw this window with.
+ /// Extra opacity to draw this layer surface with.
pub opacity: Option<f32>,
- /// Whether to block out this window from certain render targets.
+
+ /// Whether to block out this layer surface from certain render targets.
pub block_out_from: Option<BlockOutFrom>,
}