From 00beee1f087d947c5a84433000f4726bef5f7acf Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 6 Mar 2023 23:41:23 +0200 Subject: [PATCH] Fixed for help button --- slpkg/dialog_box.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slpkg/dialog_box.py b/slpkg/dialog_box.py index 48814165..0cc34128 100644 --- a/slpkg/dialog_box.py +++ b/slpkg/dialog_box.py @@ -41,7 +41,7 @@ class DialogBox(Configs): """ Display a mixedform box. """ if self.dialog: code, tags = self.d.mixedform(text=text, title=title, elements=elements, # type: ignore - height=height, width=width) + height=height, width=width, help_button=True) else: code: bool = False tags: list = elements