Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#pragma warning disable 649

using System;
using System.Linq;
using UnityEditor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#pragma warning disable 649

using System;
using System.Collections.Generic;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#pragma warning disable 649

using System;
using System.Collections.Generic;
using System.Linq;
Expand Down Expand Up @@ -42,7 +40,6 @@ class HistoryView : Subview
[NonSerialized] private int selectionIndex;
[NonSerialized] private bool logHasChanged;
[NonSerialized] private bool useScrollTime;
[NonSerialized] private bool isBusy;

[SerializeField] private Vector2 detailsScroll;
[SerializeField] private Vector2 scroll;
Expand Down Expand Up @@ -650,7 +647,7 @@ private void DrawTimelineRectAroundIconRect(Rect parentRect, Rect iconRect)

public override bool IsBusy
{
get { return isBusy; }
get { return false; }
}

private float EntryHeight
Expand Down
2 changes: 0 additions & 2 deletions src/UnityExtension/Assets/Editor/GitHub.Unity/UI/Window.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#pragma warning disable 649

using System;
using System.Linq;
using UnityEditor;
Expand Down