diff --git a/README.md b/README.md index 7d254eb0..0bab08e3 100644 --- a/README.md +++ b/README.md @@ -300,6 +300,7 @@ PS: **ARM平台** 请使用全量版 同时 **如果你的机器 RAM < 1G 可能 * 更新天气api * 使用道具可以附带额外信息供函数使用 +* 限制帮助图片最小宽度 ### 2022/11/12 diff --git a/basic_plugins/help/data_source.py b/basic_plugins/help/data_source.py index 16d425a8..69d0149c 100755 --- a/basic_plugins/help/data_source.py +++ b/basic_plugins/help/data_source.py @@ -259,6 +259,7 @@ def _create_help_img( width += img.w + 10 B = BuildImage(width + 100, height + 250, font_size=24) width, _ = get_max_width_or_paste(simple_help_img_list, B) + width = width if width > 870 else 870 bk = None random_bk = os.listdir(random_bk_path) if random_bk: