From 011ac0fd7df7d1fa318567a9d0d54fede753dbbd Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 17 Feb 2020 11:29:19 +0100 Subject: [PATCH] Fix inverted triangle path on Linux. @ShadowCommander you messed up the casing on the file path. --- Content.Client/UserInterface/NanoStyle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/NanoStyle.cs b/Content.Client/UserInterface/NanoStyle.cs index ecc828d36c..bd5bd73a60 100644 --- a/Content.Client/UserInterface/NanoStyle.cs +++ b/Content.Client/UserInterface/NanoStyle.cs @@ -66,7 +66,7 @@ namespace Content.Client.UserInterface windowBackground.SetPatchMargin(StyleBox.Margin.Horizontal | StyleBox.Margin.Bottom, 2); windowBackground.SetExpandMargin(StyleBox.Margin.Horizontal | StyleBox.Margin.Bottom, 2); - var textureInvertedTriangle = resCache.GetTexture("/nano/inverted_triangle.svg.png"); + var textureInvertedTriangle = resCache.GetTexture("/Nano/inverted_triangle.svg.png"); // Button styles. var buttonTex = resCache.GetTexture("/Nano/button.svg.96dpi.png");