Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/backend/input/tablet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ pub trait TabletToolButtonEvent<B: InputBackend>: TabletToolEvent<B> + Event<B>
fn button(&self) -> u32;

/// For the button of a TabletToolButtonEvent,
/// return the total number of buttons pressed on all devices on the associated seat after the the event was triggered.
/// return the total number of buttons pressed on all devices on the associated seat after the event was triggered.
fn seat_button_count(&self) -> u32;

/// Return the button state of the event.
Expand Down
2 changes: 1 addition & 1 deletion src/desktop/space/wayland/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub fn output_update(output: &Output, output_overlap: Option<Rectangle<i32, Logi
output.leave(wl_surface);
}
} else {
// Maybe the the surface got unmapped, send leave on output
// Maybe the surface got unmapped, send leave on output
output.leave(wl_surface);
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/desktop/wayland/popup/grab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ where
return;
}

// Check if the the client of the focused surface is still equal to the grabbed surface client
// Check if the client of the focused surface is still equal to the grabbed surface client
// if not the popup will be dismissed
if state == ButtonState::Pressed
&& !handle
Expand Down