Browse Source

Remove unused event types

CPKreuz 1 year ago
parent
commit
0cb53e3703
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/PixiEditor/Models/AnalyticsAPI/AnalyticEventTypes.cs

+ 0 - 2
src/PixiEditor/Models/AnalyticsAPI/AnalyticEventTypes.cs

@@ -4,7 +4,6 @@ public class AnalyticEventTypes
 {
 {
     public static string Startup { get; } = GetEventType("Startup");
     public static string Startup { get; } = GetEventType("Startup");
     public static string CreateDocument { get; } = GetEventType("CreateDocument");
     public static string CreateDocument { get; } = GetEventType("CreateDocument");
-    public static string SwitchTab { get; } = GetEventType("SwitchTab");
     public static string OpenWindow { get; } = GetEventType("OpenWindow");
     public static string OpenWindow { get; } = GetEventType("OpenWindow");
     public static string CreateNode { get; } = GetEventType("CreateNode");
     public static string CreateNode { get; } = GetEventType("CreateNode");
     public static string CreateKeyframe { get; } = GetEventType("CreateKeyframe");
     public static string CreateKeyframe { get; } = GetEventType("CreateKeyframe");
@@ -15,7 +14,6 @@ public class AnalyticEventTypes
     public static string GeneralCommand { get; } = GetEventType("GeneralCommand");
     public static string GeneralCommand { get; } = GetEventType("GeneralCommand");
     public static string SwitchTool { get; } = GetEventType("SwitchTool");
     public static string SwitchTool { get; } = GetEventType("SwitchTool");
     public static string UseTool { get; } = GetEventType("UseTool");
     public static string UseTool { get; } = GetEventType("UseTool");
-    public static string SetColor { get; } = GetEventType("SetColor");
 
 
     private static string GetEventType(string value) => $"PixiEditor.{value}";
     private static string GetEventType(string value) => $"PixiEditor.{value}";
 }
 }