diff --git a/DevTools/Inspector/RemoteObjectGraphModel.cpp b/DevTools/Inspector/RemoteObjectGraphModel.cpp index 73d5d1dfc7..b5d6db23d0 100644 --- a/DevTools/Inspector/RemoteObjectGraphModel.cpp +++ b/DevTools/Inspector/RemoteObjectGraphModel.cpp @@ -98,7 +98,7 @@ GUI::Variant RemoteObjectGraphModel::data(const GUI::ModelIndex& index, Role rol { auto* remote_object = static_cast(index.internal_data()); if (role == Role::Icon) { - if (remote_object->class_name == "GWindow") + if (remote_object->class_name == "Window") return m_window_icon; return m_object_icon; }