From 87d28f5eab6a3d41af12425eb684175930416455 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Sun, 28 Aug 2016 06:45:59 +0000 Subject: Use desktop scaling factor also when pasting an Enhanced Metafile git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11900 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_win32.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index b5dfa474b..f0229919f 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -769,6 +769,8 @@ void Fl_WinAPI_System_Driver::paste(Fl_Widget &receiver, int clipboard, const ch float factorw = (100.f * hmm) / hdots; float factorh = (100.f * vmm) / vdots + 0.5f; width = (int)(width/factorw); height = (int)(height/factorh); // convert to screen pixel unit + float scaling = Fl_WinAPI_Screen_Driver::desktop_scaling_factor(); + width *= scaling; height *= scaling; RECT rect = {0, 0, width, height}; Fl_Offscreen off = fl_create_offscreen(width, height); fl_begin_offscreen(off); -- cgit v1.2.3