Enchancement to override Label._renderNecessary
All checks were successful
build nuget workflow for TelegramBotBase project / Build-TelegramBotBase (x64, linux) (push) Successful in 37s

This commit is contained in:
Максим Човнюк 2024-12-07 23:04:00 +05:00
parent 07cbb8bfa4
commit 07ac1502b4
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ jobs:
Build-TelegramBotBase:
env:
APP_PROJECT_NAME: TelegramBotBase
PACKAGE_VERSION: "123.1.5"
PACKAGE_VERSION: "123.1.6"
strategy:
matrix:
os:

View File

@ -14,7 +14,7 @@ namespace TelegramBotBase.Controls.Inline;
[DebuggerDisplay("{Text}")]
public class Label : ControlBase
{
private bool _renderNecessary = true;
protected bool _renderNecessary = true;
private string _text = Default.Language["Label_Text"];