GUI: "registerShutdownBlockReason: Successfully registered: BTDX Core didn't yet exit safely..."
azilber opened this issue · 2 comments
Having this happening in Windows 10.
Suddenly unable to bring up the client... debug log shows:
GUI: QObject::connect: No such slot BitcoinGUI::unlockWallet() in qt/bitcoingui.cpp:414
GUI: QObject::connect: No such slot BitcoinGUI::unlockWallet() in qt/bitcoingui.cpp:415
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: libpng warning: iCCP: known incorrect sRGB profile
GUI: setGeometry: Unable to set geometry 5x13+640+280 on QWidgetWindow/'QLabelClassWindow'. Resulting geometry: 120x13+640+280 (frame: 8, 31, 8, 8, custom margin: 0, 0, 0, 0, minimum size: 0x0, maximum size: 16777215x16777215).
GUI: "registerShutdownBlockReason: Successfully registered: BTDX Core didn't yet exit safely..."
I compared with a few other projects, and Bitcloud does this:
WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("BTDX Core didn't yet exit safely..."), (HWND)app.getMainWinId());
while other projects (that I've confirmed working) do this:
WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("%1 didn't yet exit safely...").arg(QObject::tr(PACKAGE_NAME)), (HWND)app.getMainWinId());
When I run ANOTHER QT app, then start Bitcloud-qt immediately after the other app has started up, then it works.
Latest build seems to have resolved this issue.