PyDoc: remove deprecated dpi argument from BLF example

This commit is contained in:
Campbell Barton 2023-02-07 15:10:59 +11:00
parent dbca0cc9d5
commit db8b5a2316
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def draw_callback_px(self, context):
# BLF drawing routine
font_id = font_info["font_id"]
blf.position(font_id, 2, 80, 0)
blf.size(font_id, 50, 72)
blf.size(font_id, 50)
blf.draw(font_id, "Hello World")