This commit is contained in:
zhuzihcu
2023-06-12 17:04:35 +08:00
parent 31bdea8d44
commit e651b731cf
3 changed files with 13 additions and 2 deletions

View File

@ -135,6 +135,7 @@ CustomWindow {
FluRemoteLoader{
id:loader
anchors.fill: parent
// source: "http://localhost:9000/RemoteComponent.qml"
source: "https://zhu-zichu.gitee.io/RemoteComponent.qml"
}
}
@ -284,4 +285,15 @@ CustomWindow {
}
}
Shortcut {
sequence: "F5"
context: Qt.WindowShortcut
onActivated: {
if(flipable.flipped){
loader.reload()
}
}
}
}