Fix typos
This commit is contained in:
parent
180efb0ba9
commit
1d98ee089c
4 changed files with 5 additions and 5 deletions
|
|
@ -1134,7 +1134,7 @@ impl<C: XConnection> Dispatch<s_tablet::zwp_tablet_pad_ring_v2::ZwpTabletPadRing
|
||||||
ring.client.destroy();
|
ring.client.destroy();
|
||||||
state.objects.remove(*key);
|
state.objects.remove(*key);
|
||||||
}
|
}
|
||||||
other => warn!("unhandled tablet pad ring requst: {other:?}"),
|
other => warn!("unhandled tablet pad ring request: {other:?}"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1163,7 +1163,7 @@ impl<C: XConnection> Dispatch<s_tablet::zwp_tablet_pad_strip_v2::ZwpTabletPadStr
|
||||||
strip.client.destroy();
|
strip.client.destroy();
|
||||||
state.objects.remove(*key);
|
state.objects.remove(*key);
|
||||||
}
|
}
|
||||||
other => warn!("unhandled tablet pad strip requst: {other:?}"),
|
other => warn!("unhandled tablet pad strip request: {other:?}"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -538,7 +538,7 @@ impl<C: XConnection> ServerState<C> {
|
||||||
|
|
||||||
let activation_state = ActivationState::bind(&clientside.global_list, &qh)
|
let activation_state = ActivationState::bind(&clientside.global_list, &qh)
|
||||||
.inspect_err(|e| {
|
.inspect_err(|e| {
|
||||||
warn!("Could not bind xdg activation ({e:?}). Windows might not recive focus depending on compositor focus stealing policy.")
|
warn!("Could not bind xdg activation ({e:?}). Windows might not receive focus depending on compositor focus stealing policy.")
|
||||||
})
|
})
|
||||||
.ok();
|
.ok();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1800,7 +1800,7 @@ fn negative_output_xdg_position_update_offset() {
|
||||||
let mut first = false;
|
let mut first = false;
|
||||||
for event in std::mem::take(&mut *xdg_output.data.events.lock().unwrap()) {
|
for event in std::mem::take(&mut *xdg_output.data.events.lock().unwrap()) {
|
||||||
if let zxdg_output_v1::Event::LogicalPosition { x, y } = event {
|
if let zxdg_output_v1::Event::LogicalPosition { x, y } = event {
|
||||||
// Testwl sends a logical positon event when the output is first created
|
// Testwl sends a logical position event when the output is first created
|
||||||
// We are interested in the second one generated by satellite
|
// We are interested in the second one generated by satellite
|
||||||
if !first {
|
if !first {
|
||||||
first = true;
|
first = true;
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,7 @@ impl Selection {
|
||||||
warn!("Failed to write selection data: {e:?}");
|
warn!("Failed to write selection data: {e:?}");
|
||||||
} else if incr {
|
} else if incr {
|
||||||
debug!(
|
debug!(
|
||||||
"recieved some incr data for {}",
|
"received some incr data for {}",
|
||||||
get_atom_name(&self.connection, target)
|
get_atom_name(&self.connection, target)
|
||||||
);
|
);
|
||||||
pending.push(PendingSelectionData {
|
pending.push(PendingSelectionData {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue