Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check for layer surface under cursor when clicking #885

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/niri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2408,7 +2408,19 @@ impl Niri {

// Check if some layer-shell surface is on top.
let layers = layer_map_for_output(output);
let layer_under = |layer| layers.layer_under(layer, pos_within_output).is_some();
let layer_under = |layer| {
layers
.layer_under(layer, pos_within_output)
.and_then(|layer| {
let layer_pos_within_output =
layers.layer_geometry(layer).unwrap().loc.to_f64();
layer.surface_under(
pos_within_output - layer_pos_within_output,
WindowSurfaceType::ALL,
)
})
.is_some()
};
if layer_under(Layer::Overlay) {
return None;
}
Expand Down