private void EditorButton_Click(object sender, RoutedEventArgs e)
 {
     if (User.Instance.IsConnected)
     {
         if (Profile.Instance.CurrentProfile.ShowEditorTutorial)
         {
             TutorialHelper.StartEditorTutorial();
         }
     }
     else
     {
         if (Properties.Settings.Default.ShowTutorial)
         {
             TutorialHelper.StartEditorTutorial();
         }
     }
     RequestChangeState(Enums.States.Edition);
 }