fix some crashes

This commit is contained in:
vaxerski
2022-03-30 21:18:42 +02:00
parent 3f84dac599
commit 3ca2d3b678
3 changed files with 17 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
#include "Window.hpp"
#include "Compositor.hpp"
CWindow::~CWindow() {
if ((this->m_uSurface.xdg || this->m_uSurface.xwayland) && g_pCompositor->m_pLastFocus == g_pXWaylandManager->getWindowSurface(this))
g_pCompositor->m_pLastFocus = nullptr;
}