mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 20:56:25 +02:00
particle explorer icon
This commit is contained in:
parent
80c3c00398
commit
c60360b6e0
1 changed files with 13 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
import QtQuick 2.5
|
import QtQuick 2.5
|
||||||
import QtQuick.Controls 1.0
|
import QtQuick.Controls 1.4
|
||||||
import QtWebEngine 1.1
|
import QtWebEngine 1.1
|
||||||
import QtWebChannel 1.0
|
import QtWebChannel 1.0
|
||||||
import QtQuick.Controls.Styles 1.4
|
import QtQuick.Controls.Styles 1.4
|
||||||
|
@ -7,6 +7,7 @@ import "../../controls"
|
||||||
import "../toolbars"
|
import "../toolbars"
|
||||||
import HFWebEngineProfile 1.0
|
import HFWebEngineProfile 1.0
|
||||||
import QtGraphicalEffects 1.0
|
import QtGraphicalEffects 1.0
|
||||||
|
import "../../styles-uit"
|
||||||
|
|
||||||
StackView {
|
StackView {
|
||||||
id: editRoot
|
id: editRoot
|
||||||
|
@ -323,6 +324,17 @@ StackView {
|
||||||
font.pixelSize: 16
|
font.pixelSize: 16
|
||||||
font.bold: true
|
font.bold: true
|
||||||
color: styleData.selected ? "white" : "white"
|
color: styleData.selected ? "white" : "white"
|
||||||
|
property string glyphtext: ""
|
||||||
|
HiFiGlyphs {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
size: 30
|
||||||
|
color: "#ffffff"
|
||||||
|
text: text.glyphtext
|
||||||
|
}
|
||||||
|
Component.onCompleted: if (styleData.title == "P") {
|
||||||
|
text.text = " ";
|
||||||
|
text.glyphtext = "\ue004";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tabBar: Rectangle {
|
tabBar: Rectangle {
|
||||||
|
|
Loading…
Reference in a new issue