mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-02 15:12:04 +00:00
Inspector: Don't show child count in remote object tree
You can just open a node if you want to see its children.
This commit is contained in:
parent
6bcda1875e
commit
f8daa9ef02
Notes:
sideshowbarker
2024-07-19 08:54:09 +09:00
Author: https://github.com/awesomekling
Commit: f8daa9ef02
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ GUI::Variant RemoteObjectGraphModel::data(const GUI::ModelIndex& index, Role rol
|
|||
return m_object_icon;
|
||||
}
|
||||
if (role == Role::Display) {
|
||||
return String::format("%s{%s} (%d)", remote_object->class_name.characters(), remote_object->address.characters(), remote_object->children.size());
|
||||
return String::format("%s{%s}", remote_object->class_name.characters(), remote_object->address.characters());
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue