Files
metabuilder/fakemui/qml-components/data-display/CTooltip.qml
JohnDoe6345789 765bd203a2 feat: Add CODE_REVIEW.md and update QML imports to modern versionless format
- Created CODE_REVIEW.md for comprehensive code review documentation.
- Updated 44 QML files to use modern versionless imports for QtQuick and QtQuick.Controls.
- Removed debug console.log statements from App.qml for cleaner code.
- Identified and documented minimal component implementations in CAutoGrid.qml and CEditorWrapper.qml, recommending enhancements for production readiness.
2025-12-30 02:49:21 +00:00

12 lines
328 B
QML

import QtQuick
import QtQuick.Controls
Popup {
id: tip
implicitWidth: contentItem.implicitWidth
implicitHeight: contentItem.implicitHeight
contentItem: Text { id: t; text: tip.text; color: "white"; wrapMode: Text.WordWrap }
property string text: ""
background: Rectangle { color: "black"; radius: 4 }
}