mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
WindowServer: Show PID and window ID in title bars for now.
This is useful for debugging since I'm often wondering which process some window belongs to (and what the window ID is.)
This commit is contained in:
parent
e6fc84e234
commit
291922b1af
5 changed files with 13 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
WSWindow::WSWindow(Process& process, int window_id)
|
||||
: m_process(process)
|
||||
, m_window_id(window_id)
|
||||
, m_pid(process.pid())
|
||||
{
|
||||
WSWindowManager::the().add_window(*this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue