Skip to content

Commit

Permalink
Merge pull request #576 from Rinzwind/uitheme-display-scale-factor
Browse files Browse the repository at this point in the history
Make #inspectionColors in UITheme take the display scale factor into account
  • Loading branch information
jecisc authored Aug 10, 2023
2 parents f9e25b6 + 0daab7f commit eda67b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NewTools-Inspector-Extensions/UITheme.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ UITheme >> inspectionColors [
displayIcon: [ :each |
Morph new
color: (self perform: each);
asFormOfSize: 20@20 ];
asFormOfSize: (20@20) scaledByDisplayScaleFactor ];
yourself
]

0 comments on commit eda67b6

Please sign in to comment.