Motif corrections in
wxDC (match wxWin 2.0 drawing stuff)
on idle handling -> speed-up
threads work now
modules work now (also in release mode...)
wxMotif compiles with configure again
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1282 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -57,8 +57,10 @@ static Pixmap bdiag, cdiag, fdiag, cross, horiz, verti;
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#define RAD2DEG 57.2957795131
|
||||
|
||||
// Fudge factor. Obsolete?
|
||||
#define WX_GC_CF 0
|
||||
// No. Robert Roebling
|
||||
#define WX_GC_CF 1
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxWindowDC
|
||||
@@ -1515,7 +1517,7 @@ void wxWindowDC::SetPen( const wxPen &pen )
|
||||
break;
|
||||
case wxCAP_ROUND:
|
||||
default:
|
||||
cap = CapRound;
|
||||
cap = (scaled_width <= 1) ? CapNotLast : CapRound;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user