Commit 51086b55 authored by Alexander Nicolaysen Sørnes's avatar Alexander Nicolaysen Sørnes Committed by Alexandre Julliard

comdlg32: PageSetupDlgA: Read margins from correct edit boxes.

parent edd3f264
......@@ -2890,10 +2890,10 @@ PRINTDLG_PS_WMCommandA(
GETVAL(id, pda->curdlg.rtMargin.left);
break;
case edt5:
GETVAL(id, pda->curdlg.rtMargin.right);
GETVAL(id, pda->curdlg.rtMargin.top);
break;
case edt6:
GETVAL(id, pda->curdlg.rtMargin.top);
GETVAL(id, pda->curdlg.rtMargin.right);
break;
case edt7:
GETVAL(id, pda->curdlg.rtMargin.bottom);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment