Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
2f23e77e
Commit
2f23e77e
authored
Aug 20, 2019
by
meta-androcto
Browse files
Options
Downloads
Patches
Plain Diff
measureit_geometry: Use ui_scale + dpi : D5455
parent
b37f6982
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
measureit/measureit_geometry.py
+2
-1
2 additions, 1 deletion
measureit/measureit_geometry.py
with
2 additions
and
1 deletion
measureit/measureit_geometry.py
+
2
−
1
View file @
2f23e77e
...
...
@@ -810,7 +810,8 @@ def draw_text(myobj, pos2d, display_text, rgba, fsize, align='L', text_rot=0.0):
gap
=
12
x_pos
,
y_pos
=
pos2d
font_id
=
0
blf
.
size
(
font_id
,
fsize
,
72
)
ui_scale
=
bpy
.
context
.
preferences
.
system
.
ui_scale
blf
.
size
(
font_id
,
round
(
fsize
*
ui_scale
),
bpy
.
context
.
preferences
.
system
.
dpi
)
# blf.size(font_id, fsize, dpi)
# height of one line
mwidth
,
mheight
=
blf
.
dimensions
(
font_id
,
"
Tp
"
)
# uses high/low letters
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment