Skip to content

Commit

Permalink
Disabled unavailable features on some platforms.
Browse files Browse the repository at this point in the history
Closes #572.
  • Loading branch information
xvitaly committed Apr 18, 2024
1 parent a83dbf6 commit e68dea3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/srcrepair/FrmMainW.cs
Original file line number Diff line number Diff line change
Expand Up @@ -710,9 +710,13 @@ private void ChangePrvControlState()
// Checking platform...
if (App.Platform.OS != CurrentPlatform.OSType.Windows)
{
// On Linux and MacOS we will disable "Keyboard disabler" and Reporter modules...
// On Linux and MacOS we will disable some modules and features...
MNUReportBuilder.Enabled = false;
MNUWinMnuDisabler.Enabled = false;
PS_CleanRegistry.Enabled = false;
PS_ServiceRepair.Enabled = false;
BUT_L_AllSteam.Enabled = false;
BUT_L_AllSRC.Enabled = false;
}
}

Expand Down

0 comments on commit e68dea3

Please sign in to comment.