From 15202e63ab52f2c24c927ec1651599076b4ae15f Mon Sep 17 00:00:00 2001 From: devZoGok Date: Sun, 13 Aug 2023 12:12:25 +0300 Subject: [PATCH] removed redundant flag --- textbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textbox.cpp b/textbox.cpp index 6be2b6c..b3da348 100644 --- a/textbox.cpp +++ b/textbox.cpp @@ -69,7 +69,7 @@ namespace vb01Gui{ cursorNode->setVisible(canShowCursor); } - if(deleteCharacters && canDeleteChar()) + if(deleteCharacters) deleteCharacter(); } }