consistent output of window addresses

This commit is contained in:
vaxerski 2022-09-08 18:47:39 +02:00
parent 49a55f136e
commit 0eb5ecafb9
1 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ R"#({
"monitor": "%s",
"windows": %i,
"hasfullscreen": %s,
"lastwindow": "%x",
"lastwindow": "0x%x",
"lastwindowtitle": "%s"
},)#",
w->m_iID,
@ -153,7 +153,7 @@ R"#({
} else {
for (auto& w : g_pCompositor->m_vWorkspaces) {
const auto PLASTW = w->getLastFocusedWindow();
result += getFormat("workspace ID %i (%s) on monitor %s:\n\twindows: %i\n\thasfullscreen: %i\n\tlastwindow: %x\n\tlastwindowtitle: %s\n\n",
result += getFormat("workspace ID %i (%s) on monitor %s:\n\twindows: %i\n\thasfullscreen: %i\n\tlastwindow: 0x%x\n\tlastwindowtitle: %s\n\n",
w->m_iID, w->m_szName.c_str(), g_pCompositor->getMonitorFromID(w->m_iMonitorID)->szName.c_str(), g_pCompositor->getWindowsOnWorkspace(w->m_iID), (int)w->m_bHasFullscreenWindow, PLASTW, PLASTW ? PLASTW->m_szTitle.c_str() : "");
}
}