Skip to content

Commit

Permalink
Remove extraneous styles class in editor GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
mminer committed Jun 22, 2023
1 parent 8be8a18 commit 4bacd09
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Editor/BigImageRecorderEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ namespace UnityEditor.BigImageRecorder
[CustomEditor(typeof(BigImageRecorderSettings))]
class BigImageRecorderEditor : RecorderEditor
{
static class Styles
{
public static readonly GUIContent ArgumentsLabel = new GUIContent("Arguments");
}
static readonly GUIContent argumentsLabel = new GUIContent("Arguments");

protected override void FileTypeAndFormatGUI()
{
Expand All @@ -30,7 +27,7 @@ protected override void NameAndPathGUI()
{
using (new EditorGUI.IndentLevelScope())
{
EditorGUILayout.PropertyField(stitchCommandArguments, Styles.ArgumentsLabel);
EditorGUILayout.PropertyField(stitchCommandArguments, argumentsLabel);
}

EditorGUILayout.PropertyField(deleteAfterStitching);
Expand Down

0 comments on commit 4bacd09

Please sign in to comment.