AGS.Editor.GUIController.ShowPreferencesEditor C# (CSharp) Method

ShowPreferencesEditor() public method

public ShowPreferencesEditor ( ) : void
return void
        public void ShowPreferencesEditor()
        {
            PreferencesEditor prefsEditor = new PreferencesEditor(_agsEditor.Preferences);
            if (prefsEditor.ShowDialog() == DialogResult.OK)
            {
                _agsEditor.Preferences.SaveToRegistry();
                //_mainForm.SetProjectTreeLocation(_agsEditor.Preferences.ProjectTreeOnRight);
            }
            prefsEditor.Dispose();
        }
GUIController