Fixed copy&paste logging message errors

This commit is contained in:
Drakulix 2017-06-04 23:10:50 +02:00
parent 1925dc9ea8
commit 4053d2bc30
1 changed files with 2 additions and 2 deletions

View File

@ -396,7 +396,7 @@ impl backend::InputBackend for LibinputInputBackend {
let device_seat = touch_event.device().seat();
let seat = &self.seats
.get(&device_seat)
.expect("Recieved key event of non existing Seat");
.expect("Recieved touch event of non existing Seat");
match touch_event {
TouchEvent::Down(down_event) => {
trace!(self.logger, "Calling on_touch_down with {:?}", down_event);
@ -446,7 +446,7 @@ impl backend::InputBackend for LibinputInputBackend {
let device_seat = pointer_event.device().seat();
let seat = &self.seats
.get(&device_seat)
.expect("Recieved key event of non existing Seat");
.expect("Recieved pointer event of non existing Seat");
match pointer_event {
PointerEvent::Motion(motion_event) => {
trace!(self.logger,