mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 06:05:59 +01:00
Log focus
This commit is contained in:
parent
670ba55b35
commit
c63225b332
1 changed files with 5 additions and 2 deletions
|
@ -339,8 +339,6 @@ void CCompositor::focusWindow(CWindow* pWindow) {
|
||||||
const auto PWINDOWSURFACE = g_pXWaylandManager->getWindowSurface(pWindow);
|
const auto PWINDOWSURFACE = g_pXWaylandManager->getWindowSurface(pWindow);
|
||||||
|
|
||||||
focusSurface(PWINDOWSURFACE);
|
focusSurface(PWINDOWSURFACE);
|
||||||
|
|
||||||
Debug::log(LOG, "Set keyboard focus to %x, with name: %s", pWindow, pWindow->m_szTitle.c_str());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CCompositor::focusSurface(wlr_surface* pSurface) {
|
void CCompositor::focusSurface(wlr_surface* pSurface) {
|
||||||
|
@ -364,6 +362,11 @@ void CCompositor::focusSurface(wlr_surface* pSurface) {
|
||||||
m_pLastFocus = pSurface;
|
m_pLastFocus = pSurface;
|
||||||
|
|
||||||
g_pXWaylandManager->activateSurface(pSurface, true);
|
g_pXWaylandManager->activateSurface(pSurface, true);
|
||||||
|
|
||||||
|
if (const auto PWINDOW = getWindowFromSurface(pSurface); PWINDOW)
|
||||||
|
Debug::log(LOG, "Set keyboard focus to surface %x, with window name: %s", pSurface, PWINDOW->m_szTitle.c_str());
|
||||||
|
else
|
||||||
|
Debug::log(LOG, "Set keyboard focus to surface %x", pSurface);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CCompositor::windowValidMapped(CWindow* pWindow) {
|
bool CCompositor::windowValidMapped(CWindow* pWindow) {
|
||||||
|
|
Loading…
Reference in a new issue