Skip to content
Snippets Groups Projects
Commit aa87806d authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

SessionModel modified to allow copy action

parent 3683c7b5
No related branches found
No related tags found
No related merge requests found
......@@ -129,12 +129,12 @@ inline bool SessionModel::setHeaderData(int, Qt::Orientation, const QVariant &,
inline Qt::DropActions SessionModel::supportedDragActions() const
{
return Qt::MoveAction;
return Qt::CopyAction | Qt::MoveAction;
}
inline Qt::DropActions SessionModel::supportedDropActions() const
{
return Qt::MoveAction;
return Qt::CopyAction | Qt::MoveAction;
}
inline QString SessionModel::getModelTag() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment