Avoid unnecessary redraw when duplicating.
This commit is contained in:
parent
a0c6c794fa
commit
6a5417cd1a
3
Region.C
3
Region.C
|
@ -95,7 +95,8 @@ Region::init ( void )
|
||||||
Region::Region ( const Region & rhs )
|
Region::Region ( const Region & rhs )
|
||||||
{
|
{
|
||||||
_offset = rhs._offset;
|
_offset = rhs._offset;
|
||||||
_track = rhs._track;
|
// _track = rhs._track;
|
||||||
|
_track = NULL;
|
||||||
_clip = rhs._clip;
|
_clip = rhs._clip;
|
||||||
_start = rhs._start;
|
_start = rhs._start;
|
||||||
_end = rhs._end;
|
_end = rhs._end;
|
||||||
|
|
Loading…
Reference in New Issue