autocommit 2022-03-30 03:00:46 CEST
This commit is contained in:
parent
9842264fad
commit
28c9b46400
40 changed files with 1212 additions and 175 deletions
|
|
@ -161,9 +161,15 @@ async fn run(
|
|||
};
|
||||
let client_id = state.clients.id();
|
||||
let queue = Rc::new(AsyncQueue::new());
|
||||
let client = state
|
||||
.clients
|
||||
.spawn2(client_id, state, client1, 9999, 9999, Some(queue.clone()));
|
||||
let client = state.clients.spawn2(
|
||||
client_id,
|
||||
state,
|
||||
client1,
|
||||
9999,
|
||||
9999,
|
||||
true,
|
||||
Some(queue.clone()),
|
||||
);
|
||||
let client = match client {
|
||||
Ok(c) => c,
|
||||
Err(e) => return Err(XWaylandError::SpawnClient(e)),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue