Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/qt/rpcconsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,10 @@ RPCConsole::RPCConsole(interfaces::Node& node, const PlatformStyle *_platformSty
clear();

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()
Expand Down