This commit is contained in:
朱子楚\zhuzi
2024-03-31 21:52:06 +08:00
parent d222cb640c
commit 68015776ab
12 changed files with 27 additions and 17 deletions

View File

@ -344,7 +344,7 @@ FluWindow {
id:callable
property bool silent: true
onStart: {
console.debug("satrt check update...")
console.debug("start check update...")
}
onFinish: {
console.debug("check update finish")

View File

@ -16,7 +16,7 @@ FluWindow {
onInitArgument:
(arg)=>{
window.title = arg.title
loader.setSource( arg.url,{animDisabled:true})
loader.setSource(arg.url,{animationEnabled:false})
}
FluLoader{
id: loader

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 MiB

After

Width:  |  Height:  |  Size: 5.1 MiB

View File

@ -94,7 +94,7 @@ int main(int argc, char *argv[])
engine.load(url);
const int exec = QGuiApplication::exec();
if (exec == 931) {
QProcess::startDetached(qApp->applicationFilePath(), QStringList());
QProcess::startDetached(qApp->applicationFilePath(), qApp->arguments());
}
return exec;
}