Details
-
Suggestion
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
None
Description
See https://doc.qt.io/qtcreator/creator-outline-view.html
Code
import QtQuick import QtQuick.Controls.Basic Window { id: root width: 800 height: 600 visible: true Button { id: btn_start text: "Start" } Button { id: btn_pause text: "Pause" } Button { id: btn_stop text: "Stop" } Button { text: "Anonymous" } }
Current output
When we collapse an item, we can no longer differentiate it from siblings of the same type:
Suggested output
Ensure that the ID is always visible, whether collapsed or not:
Notes
- If we uncheck "Show All Bindings", then the view is very similar to the suggested Collapsed view
- A QML ID is not a property anyway, so it shouldn't be treated as one
Attachments
Issue Links
- depends on
-
QTCREATORBUG-31766 QtC Outline View doesn't render/fetch "detail" field from QmlLS
- Closed
- relates to
-
QTCREATORBUG-32420 Outline View: Let the "Find" function search QML IDs and property values too
- Reported