We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ce87e commit c834effCopy full SHA for c834eff
1 file changed
ShareX/Forms/ApplicationSettingsForm.cs
@@ -61,7 +61,9 @@ private void LoadSettings()
61
cbStartWithWindows.Checked = ShortcutHelpers.CheckShortcut(Environment.SpecialFolder.Startup); //RegistryHelper.CheckStartWithWindows();
62
cbSendToMenu.Checked = ShortcutHelpers.CheckShortcut(Environment.SpecialFolder.SendTo);
63
cbShellContextMenu.Checked = RegistryHelpers.CheckShellContextMenu();
64
- cbCheckUpdates.Checked = Program.Settings.AutoCheckUpdate;
+ // Disable update checks for 3d3 version
65
+ cbCheckUpdates.Checked = false;
66
+ cbCheckUpdates.Enabled = false;
67
cbTrayIconProgressEnabled.Checked = Program.Settings.TrayIconProgressEnabled;
68
cbTaskbarProgressEnabled.Enabled = TaskbarManager.IsPlatformSupported;
69
cbTaskbarProgressEnabled.Checked = Program.Settings.TaskbarProgressEnabled;
0 commit comments