mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 17:03:58 +02:00
Further changes to address bar
This commit is contained in:
parent
1be303e3ed
commit
5645491170
2 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,7 @@ DialogContainer {
|
|||
Connections {
|
||||
target: addressBarDialog
|
||||
onGoBackPossible: {
|
||||
console.log("ayy lmao BACK")
|
||||
console.log("BACK")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ DialogContainer {
|
|||
Connections {
|
||||
target: addressBarDialog
|
||||
onGoForwardPossible: {
|
||||
console.log("ayy lmao FORWARD")
|
||||
console.log("FORWARD")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ void AddressBarDialog::changeForwardAlpha(bool isPossible) {
|
|||
QQmlEngine engine;
|
||||
QQmlComponent component(&engine, "AddressBarDialog.qml");
|
||||
QObject *object = component.create();
|
||||
qDebug() << "AAAAAAAAAAAAAA : " << ((QQuickItem*)parent())->children()[0]->objectName();
|
||||
qDebug() << "Current parent's child : " << ((QQuickItem*)parent())->children()[0]->objectName();
|
||||
|
||||
QVariant returnedValue;
|
||||
QVariant msg = "Hello from C++";
|
||||
|
|
Loading…
Reference in a new issue