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
This commit is contained in:
Manolo Gouy 2016-08-28 06:45:59 +00:00
parent fd2da982b6
commit 87d28f5eab

View File

@ -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);