Allow columns reordering only if wxHD_ALLOW_REORDER style is set
Dragging the column should be allowed only if wxHD_ALLOW_REORDER style is set. Closes #18329.
This commit is contained in:
@@ -686,7 +686,7 @@ void wxHeaderCtrl::OnMouse(wxMouseEvent& mevent)
|
|||||||
wxASSERT_MSG( !IsResizing(), "reentering column resize mode?" );
|
wxASSERT_MSG( !IsResizing(), "reentering column resize mode?" );
|
||||||
StartOrContinueResizing(col, xPhysical);
|
StartOrContinueResizing(col, xPhysical);
|
||||||
}
|
}
|
||||||
else // on column itself
|
else if ( HasFlag(wxHD_ALLOW_REORDER) ) // on column itself
|
||||||
{
|
{
|
||||||
// start dragging the column
|
// start dragging the column
|
||||||
wxASSERT_MSG( !IsReordering(), "reentering column move mode?" );
|
wxASSERT_MSG( !IsReordering(), "reentering column move mode?" );
|
||||||
|
Reference in New Issue
Block a user