Skip to content

Commit

Permalink
限制帮助图片最小宽度
Browse files Browse the repository at this point in the history
  • Loading branch information
HibiKier committed Nov 12, 2022
1 parent 55b2a86 commit d099a85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ PS: **ARM平台** 请使用全量版 同时 **如果你的机器 RAM < 1G 可能

* 更新天气api
* 使用道具可以附带额外信息供函数使用
* 限制帮助图片最小宽度

### 2022/11/12

Expand Down
1 change: 1 addition & 0 deletions basic_plugins/help/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d099a85

Please sign in to comment.