api: add ActivationToken::{from,into}_raw

This is needed when passing and getting token from the IPC to activate
the window.
This commit is contained in:
Kirill Chibisov 2024-12-31 06:08:18 +03:00 committed by GitHub
parent 927deb030f
commit 5462f27dda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 35 additions and 11 deletions

View file

@ -532,7 +532,7 @@ impl EventLoop {
Some(Ok(token)) => {
let event = WindowEvent::ActivationTokenDone {
serial,
token: crate::window::ActivationToken::_new(token),
token: crate::window::ActivationToken::from_raw(token),
};
app.window_event(&self.event_processor.target, window_id, event);
},