Bloom.Workspace.WorkspaceView.OnSettingsProtectionChanged C# (CSharp) Method

OnSettingsProtectionChanged() private method

private OnSettingsProtectionChanged ( object sender, System e ) : void
sender object
e System
return void
        void OnSettingsProtectionChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
        {
            //when we need to use Ctrl+Shift to display stuff, we don't want it also firing up the localization dialog (which shouldn't be done by a user under settings protection anyhow)

            LocalizationManager.EnableClickingOnControlToBringUpLocalizationDialog = !SettingsProtectionSettings.Default.NormallyHidden;
        }