1
0
Fork 0
forked from wry/wry

globals: remove client capability permissions

This commit is contained in:
kossLAN 2026-05-29 18:16:06 -04:00
parent 8a35bc3ca4
commit 698110c265
No known key found for this signature in database
25 changed files with 35 additions and 155 deletions

View file

@ -1,7 +1,7 @@
use {
crate::{
backend::transaction::BackendConnectorTransactionError,
client::{CAP_JAY_COMPOSITOR, Client, ClientCaps, ClientError, ClientId},
client::{Client, ClientError, ClientId},
globals::{Global, GlobalName},
ifs::{
jay_client_query::JayClientQuery,
@ -80,10 +80,6 @@ impl Global for JayCompositorGlobal {
fn version(&self) -> u32 {
31
}
fn required_caps(&self) -> ClientCaps {
CAP_JAY_COMPOSITOR
}
}
simple_add_global!(JayCompositorGlobal);