We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e0061 commit 9479c52Copy full SHA for 9479c52
1 file changed
NewMod/Buttons/ShowScreenshotButton.cs
@@ -6,7 +6,6 @@
6
using UnityEngine;
7
using NewMod.Utilities;
8
using Reactor.Utilities;
9
-using System.IO;
10
using System.Linq;
11
12
namespace NewMod.Buttons
@@ -22,7 +21,7 @@ public class ShowScreenshotButton : CustomActionButton
22
21
public override ButtonLocation Location => ButtonLocation.BottomRight;
23
public override bool CanUse()
24
{
25
- return VisionaryUtilities.CapturedScreenshotPaths.Any();
+ return base.CanUse() && VisionaryUtilities.CapturedScreenshotPaths.Any();
26
}
27
protected override void OnClick()
28
0 commit comments