Show window ids as hex in debug console

This commit is contained in:
Gabriel Souza Franco 2020-12-03 19:09:15 -03:00
parent e320f76fb0
commit c2b0a31e08

View file

@ -1148,7 +1148,7 @@ QVariant DebugConsoleModel::clientData(const QModelIndex &index, int role, const
} }
auto c = clients.at(index.row()); auto c = clients.at(index.row());
if (role == Qt::DisplayRole) { if (role == Qt::DisplayRole) {
return QStringLiteral("%1: %2").arg(c->window()).arg(c->caption()); return QStringLiteral("0x%1: %2").arg(c->window(), 0, 16).arg(c->caption());
} else if (role == Qt::DecorationRole) { } else if (role == Qt::DecorationRole) {
return c->icon(); return c->icon();
} }
@ -1204,7 +1204,7 @@ QVariant DebugConsoleModel::data(const QModelIndex &index, int role) const
} }
auto u = m_unmanageds.at(index.row()); auto u = m_unmanageds.at(index.row());
if (role == Qt::DisplayRole) { if (role == Qt::DisplayRole) {
return u->window(); return QStringLiteral("0x%1").arg(u->window(), 0, 16);
} }
break; break;
} }