refactor(wayland): naming conventions

This commit is contained in:
Nova
2025-09-06 15:09:39 -07:00
parent f44abad5b0
commit 053d468035
3 changed files with 70 additions and 50 deletions

View File

@@ -1,4 +1,4 @@
use super::{popup::Popup, positioner::Positioner, toplevel::Mapped};
use super::{popup::Popup, positioner::Positioner, toplevel::MappedInner};
use crate::wayland::util::ClientExt;
use crate::wayland::{
core::surface::SurfaceRole,
@@ -152,7 +152,7 @@ impl XdgSurface for Surface {
&& configured.load(std::sync::atomic::Ordering::SeqCst)
&& has_valid_buffer
{
mapped_lock.replace(Mapped::create(toplevel.clone(), pid));
mapped_lock.replace(MappedInner::create(toplevel.clone(), pid));
return false;
}
true