mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-17 04:53:48 -07:00
fix warns
This commit is contained in:
@@ -970,7 +970,7 @@ void Events::listener_unmanagedSetGeometry(void* owner, void* data) {
|
||||
}
|
||||
|
||||
void Events::listener_setOverrideRedirect(void* owner, void* data) {
|
||||
const auto PWINDOW = (CWindow*)owner;
|
||||
// const auto PWINDOW = (CWindow*)owner;
|
||||
|
||||
//if (!PWINDOW->m_bIsMapped && PWINDOW->m_uSurface.xwayland->mapped) {
|
||||
// Events::listener_mapWindow(PWINDOW, nullptr);
|
||||
|
@@ -12,7 +12,7 @@ IHyprLayout* CLayoutManager::getCurrentLayout() {
|
||||
void CLayoutManager::switchToLayout(std::string layout) {
|
||||
for (size_t i = 0; i < m_vLayouts.size(); ++i) {
|
||||
if (m_vLayouts[i].first == layout) {
|
||||
if (i == m_iCurrentLayoutID)
|
||||
if (i == (size_t)m_iCurrentLayoutID)
|
||||
return;
|
||||
|
||||
getCurrentLayout()->onDisable();
|
||||
|
Reference in New Issue
Block a user