Skip to content

Commit 5555c3f

Browse files
committed
fix: sessionlock panic after switch to tty
maybe also fix #275
1 parent df22e9a commit 5555c3f

File tree

3 files changed

+31
-30
lines changed

3 files changed

+31
-30
lines changed

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ authors = [
1919
"Aakash Sen Sharma <aakashsensharma@gmail.com>",
2020
]
2121
edition = "2024"
22-
version = "0.14.0"
22+
version = "0.14.1"
2323
license = "MIT"
2424
repository = "https://github.com/waycrate/exwlshelleventloop"
2525
description = "Wayland extra shell lib"
2626
keywords = ["wayland", "wlroots"]
2727
readme = "README.md"
2828

2929
[workspace.dependencies]
30-
layershellev = { version = "0.14.0", path = "./layershellev" }
31-
sessionlockev = { version = "0.14.0", path = "./sessionlockev" }
32-
33-
iced_layershell = { version = "0.14.0", path = "./iced_layershell" }
34-
iced_exdevtools = { version = "0.14.0", path = "./iced_exdevtools" }
35-
iced_layershell_macros = { version = "0.14.0", path = "./iced_layershell_macros" }
36-
iced_sessionlock = { version = "0.14.0", path = "./iced_sessionlock" }
37-
iced_sessionlock_macros = { version = "0.14.0", path = "./iced_sessionlock_macros" }
38-
waycrate_xkbkeycode = { version = "0.14.0", path = "./waycrate_xkbkeycode" }
30+
layershellev = { version = "0.14.1", path = "./layershellev" }
31+
sessionlockev = { version = "0.14.1", path = "./sessionlockev" }
32+
33+
iced_layershell = { version = "0.14.1", path = "./iced_layershell" }
34+
iced_exdevtools = { version = "0.14.1", path = "./iced_exdevtools" }
35+
iced_layershell_macros = { version = "0.14.1", path = "./iced_layershell_macros" }
36+
iced_sessionlock = { version = "0.14.1", path = "./iced_sessionlock" }
37+
iced_sessionlock_macros = { version = "0.14.1", path = "./iced_sessionlock_macros" }
38+
waycrate_xkbkeycode = { version = "0.14.1", path = "./waycrate_xkbkeycode" }
3939

4040
tempfile = "3.23.0"
4141
thiserror = "2.0.12"

sessionlockev/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1456,6 +1456,7 @@ impl<T: 'static> WindowState<T> {
14561456
qh: qh.clone(),
14571457
});
14581458
}
1459+
self.viewporter = viewporter;
14591460
self.connection = Some(connection);
14601461
self.event_queue = Some(event_queue);
14611462
self.wl_compositor = Some(wmcompositer);

0 commit comments

Comments
 (0)