mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 20:39:55 +02:00
adding fix
This commit is contained in:
parent
1b47d3f274
commit
78001a4e31
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ import QtQuick 2.5
|
||||||
import QtQuick.Controls 1.4
|
import QtQuick.Controls 1.4
|
||||||
import QtQuick.Layouts 1.3
|
import QtQuick.Layouts 1.3
|
||||||
|
|
||||||
import "../../../../resources/qml/controls-uit" as HifiControls
|
import "qrc:////qml//controls-uit" as HifiControls
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: stats
|
id: stats
|
||||||
|
@ -25,7 +25,7 @@ Column {
|
||||||
|
|
||||||
HifiControls.Button {
|
HifiControls.Button {
|
||||||
id: toggleGraphs
|
id: toggleGraphs
|
||||||
property bool checked: false
|
checked: false
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
text: checked ? "Hide graphs" : "Show graphs"
|
text: checked ? "Hide graphs" : "Show graphs"
|
||||||
onClicked: function() { checked = !checked; }
|
onClicked: function() { checked = !checked; }
|
||||||
|
|
Loading…
Reference in a new issue