Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mac Manager: fix response to -s or --systray argument #6195

Merged
merged 2 commits into from
Mar 26, 2025
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
5 changes: 4 additions & 1 deletion clientgui/BOINCGUIApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ bool CBOINCGUIApp::OnInit() {
}
#endif


if (g_use_sandbox) {
wxCHANGE_UMASK(2); // Set file creation mask to be writable by both user and group
// Our umask will be inherited by all our child processes
Expand Down Expand Up @@ -775,6 +774,9 @@ bool CBOINCGUIApp::OnCmdLineParsed(wxCmdLineParser &parser) {
#if defined(__WXMSW__) || defined(__WXMAC__)
if (parser.Found(wxT("systray"))) {
m_bGUIVisible = false;
#ifdef __WXMAC__
m_bBOINCMGRAutoStarted = true;
#endif
}
#endif
if (parser.Found(wxT("insecure"))) {
Expand Down Expand Up @@ -1141,6 +1143,7 @@ int CBOINCGUIApp::IdleTrackerDetach() {
}


// TODO: Does the Mac really need the OnActivateApp() routine?
void CBOINCGUIApp::OnActivateApp(wxActivateEvent& event) {
m_bProcessingActivateAppEvent = true;

Expand Down