Kaydet (Commit) a6a04658 authored tarafından Jan Holesovsky's avatar Jan Holesovsky

bnc#835985: When printing handouts using the default, 'Order' did not count.

"Left to right, then down" was the same as "Top to bottom, then right"
when printing handout; set the 6 pages explicitly as the default.

Change-Id: I4a5f58c8fcf2efdc85ad7bb23bde791c5fb87584
üst 7fb84f7d
......@@ -1554,14 +1554,14 @@ private:
AutoLayout eLayout = AUTOLAYOUT_HANDOUT6;
switch (nSlidesPerHandout)
{
case 0: eLayout = AUTOLAYOUT_NONE; break; // AUTOLAYOUT_HANDOUT1; break;
case 1: eLayout = AUTOLAYOUT_HANDOUT1; break;
case 2: eLayout = AUTOLAYOUT_HANDOUT2; break;
case 3: eLayout = AUTOLAYOUT_HANDOUT3; break;
case 4: eLayout = AUTOLAYOUT_HANDOUT4; break;
default:
case 6: eLayout = AUTOLAYOUT_HANDOUT6; break;
case 9: eLayout = AUTOLAYOUT_HANDOUT9; break;
default:
case 0:
case 6: break; // use the default
}
if( !mrBase.GetDocument() )
......
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