From 27fa33c14326e08b61955b0034b5b4b1f2552591 Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Fri, 28 Feb 2020 15:54:52 +0100 Subject: Fix T72404: particle brush size radial control mismatch on high DPI display --- source/blender/editors/physics/particle_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index 49b6acc9003..99af9d094a9 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -207,7 +207,7 @@ static float pe_brush_size_get(const Scene *UNUSED(scene), ParticleBrushData *br // UnifiedPaintSettings *ups = &scene->toolsettings->unified_paint_settings; // float size = (ups->flag & UNIFIED_PAINT_SIZE) ? ups->size : brush->size; - return brush->size * U.pixelsize; + return brush->size; } PTCacheEdit *PE_get_current_from_psys(ParticleSystem *psys) -- cgit v1.2.3