When I try to print a diagram the classes and interfaces are tiny in the output document, nearly impossible to see. Looks the same in "print preview" to small and tiny.
Logged In: NO
I've fixed this with the following brief hack
add..
UMLView.h: private: double m_dScaleBeforePrinting
and change in UMLView.cpp to
void CUMLView::OnBeginPrinting( CDC* , CPrintInfo* ) { m_dScaleBeforePrinting = m_scale; setScale(3.0); }
void CUMLView::OnEndPrinting( CDC* , CPrintInfo* ) { if(m_dScaleBeforePrinting) setScale(m_dScaleBeforePrinting); else setScale(1.0); }
The value 3.0 is used as the scale for printing and I works out as a good value for me with my monitor, printer etc.
Logged In: YES user_id=952855
any chance of this fix being made available soon? I love the app! just can't print. :(
Logged In: NO
I've fixed this with the following brief hack
add..
UMLView.h:
private:
double m_dScaleBeforePrinting
and change in UMLView.cpp to
void CUMLView::OnBeginPrinting( CDC* , CPrintInfo* )
{
m_dScaleBeforePrinting = m_scale;
setScale(3.0);
}
void CUMLView::OnEndPrinting( CDC* , CPrintInfo* )
{
if(m_dScaleBeforePrinting)
setScale(m_dScaleBeforePrinting);
else
setScale(1.0);
}
The value 3.0 is used as the scale for printing and I works out
as a good value for me with my monitor, printer etc.
Logged In: YES
user_id=952855
any chance of this fix being made available soon? I love the
app! just can't print. :(