Changeset 3665 in Sophya
- Timestamp:
- Oct 24, 2009, 4:36:06 PM (16 years ago)
- Location:
- trunk/SophyaPI/PI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/pieldrw.cc
r3558 r3665 575 575 SetAxesFlags(GetAxesFlags() & ~kMinTicks); 576 576 else if (opts == "extticks") 577 SetAxesFlags( GetAxesFlags() & ~kIntTicks| kExtTicks);577 SetAxesFlags((GetAxesFlags() & ~kIntTicks) | kExtTicks); 578 578 else if (opts == "intticks") 579 SetAxesFlags( GetAxesFlags() & ~kExtTicks| kIntTicks);579 SetAxesFlags((GetAxesFlags() & ~kExtTicks) | kIntTicks); 580 580 else if (opts == "extintticks") 581 581 SetAxesFlags(GetAxesFlags() | kIntTicks | kExtTicks); -
trunk/SophyaPI/PI/psfile.cc
r3519 r3665 682 682 } 683 683 /* Portrait ou Landscape ? */ 684 if(orientation == PI_Auto) 684 if(orientation == PI_Auto) { 685 685 if( ((tw < th) && (Dx < 1.2*Dy)) || 686 686 ((tw > th) && (Dx > Dy) )) … … 688 688 else 689 689 currentPage->orientation = PI_Landscape ; 690 690 } 691 691 if(currentPage->orientation == PI_Portrait) { 692 692 // if( (tw/Dx) < (th/Dy) )
Note:
See TracChangeset
for help on using the changeset viewer.