]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Hide verb expansion indicators on debug (#22415)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Wed, 13 Dec 2023 00:03:46 +0000 (11:03 +1100)
committerGitHub <noreply@github.com>
Wed, 13 Dec 2023 00:03:46 +0000 (17:03 -0700)
I forget if it's actually going to popup or not.

Content.Client/Verbs/UI/VerbMenuElement.cs

index 5997a97384ca15105114e571c1da9413c5bb3f77..1815144f7d775e200fd5f837394d9975bd52c667 100644 (file)
@@ -33,11 +33,14 @@ namespace Content.Client.Verbs.UI
 
             Label.SetOnlyStyleClass(verb.TextStyleClass);
 
+            // There are no confirmations in debug fam.
+#if !DEBUG
             if (verb.ConfirmationPopup)
             {
                 ExpansionIndicator.SetOnlyStyleClass(StyleClassVerbMenuConfirmationTexture);
                 ExpansionIndicator.Visible = true;
             }
+#endif
 
             var entManager = IoCManager.Resolve<IEntityManager>();