From 2b6e791df4d8c56fcf442a1f835bbb7138c7e29e Mon Sep 17 00:00:00 2001 From: pierre Date: Sat, 7 Sep 2024 17:13:05 +0200 Subject: [PATCH] barplot --- dialog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dialog.py b/dialog.py index 4e7fa0d..7c9f816 100755 --- a/dialog.py +++ b/dialog.py @@ -3027,6 +3027,8 @@ class BarFrame : height = len(rownames) * 15 if height < 400 : height = 400 + if width < 500 : + width = 500 else : width = 500 height = (35 * len(colnames)) + (15 * len(rownames)) -- 2.7.4