mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
Merge pull request #1342 from jhfrontz/macos-arm-qt-thread-stack-parity
Ensure that arm-macos environments have sufficient QT thread stack
This commit is contained in:
commit
5a07eec02b
1 changed files with 4 additions and 0 deletions
|
|
@ -579,6 +579,10 @@ RPCConsole::RPCConsole(interfaces::Node& node, const PlatformStyle *_platformSty
|
||||||
clear();
|
clear();
|
||||||
|
|
||||||
GUIUtil::handleCloseWindowShortcut(this);
|
GUIUtil::handleCloseWindowShortcut(this);
|
||||||
|
#if defined(Q_OS_MAC) && defined(__aarch64__)
|
||||||
|
// MacOS default is apparently 0x80000, too small for MacOS arm; use linux-like size instead
|
||||||
|
thread.setStackSize(0x800000);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
RPCConsole::~RPCConsole()
|
RPCConsole::~RPCConsole()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue