From f4f56014bc0d3174cbee14eeccbd50b18967e299 Mon Sep 17 00:00:00 2001 From: Morgan <103436411+MorganKryze@users.noreply.github.com> Date: Sun, 18 Feb 2024 13:47:59 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20try=20updating=20coverage=20badg?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ConsoleAppVisuals/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ConsoleAppVisuals/README.md b/src/ConsoleAppVisuals/README.md index 610467c8..8b03d445 100644 --- a/src/ConsoleAppVisuals/README.md +++ b/src/ConsoleAppVisuals/README.md @@ -2,7 +2,7 @@ > User-friendly .NET visuals library designed for console apps -[![version](https://img.shields.io/nuget/v/ConsoleAppVisuals.svg?label=version)](https://www.nuget.org/packages/ConsoleAppVisuals/) [![NuGet](https://img.shields.io/nuget/dt/ConsoleAppVisuals.svg)](https://www.nuget.org/packages/ConsoleAppVisuals/) [![GitHub](https://img.shields.io/github/stars/MorganKryze/consoleappvisuals.svg?style=flat&logo=github&colorB=yellow&label=stars)](https://github.com/MorganKryze/ConsoleAppVisuals) [![Coverage Status](https://coveralls.io/repos/github/MorganKryze/ConsoleAppVisuals/badge.svg?branch=main)](https://coveralls.io/github/MorganKryze/ConsoleAppVisuals?branch=main) [![License: GNU GPL](https://img.shields.io/badge/License-GNU_GPL-orange.svg)](https://github.com/MorganKryze/ConsoleAppVisuals/blob/main/LICENSE) +[![version](https://img.shields.io/nuget/v/ConsoleAppVisuals.svg?label=version)](https://www.nuget.org/packages/ConsoleAppVisuals/) [![NuGet](https://img.shields.io/nuget/dt/ConsoleAppVisuals.svg)](https://www.nuget.org/packages/ConsoleAppVisuals/) [![GitHub](https://img.shields.io/github/stars/MorganKryze/consoleappvisuals.svg?style=flat&logo=github&colorB=yellow&label=stars)](https://github.com/MorganKryze/ConsoleAppVisuals) [![License: GNU GPL](https://img.shields.io/badge/License-GNU_GPL-orange.svg)](https://github.com/MorganKryze/ConsoleAppVisuals/blob/main/LICENSE) ![title](https://gitlab.com/MorganKryze/consoleappvisuals/-/raw/main/presentation.gif) @@ -68,10 +68,10 @@ Now at each refresh, the `Title` element will appear on screen. To disable it, y ```csharp // Will look for a Title element and deactivate it, the first on the list -Window.DeactivateElement(); +Window.DeactivateElement<Title>(); // Will deactivate the exampleTitle element -Window.DeactivateElement(exampleTitle); +Window.DeactivateElement(exampleTitle); ``` Or simply remove it from the list: