Commit a80d2785 authored by Guillaume Burel's avatar Guillaume Burel

Item drop on board fixed.

Item is now selected.
parent f79b28a8
...@@ -48,29 +48,17 @@ UBGraphicsWebView::~UBGraphicsWebView() ...@@ -48,29 +48,17 @@ UBGraphicsWebView::~UBGraphicsWebView()
QVariant UBGraphicsWebView::itemChange(GraphicsItemChange change, const QVariant &value) QVariant UBGraphicsWebView::itemChange(GraphicsItemChange change, const QVariant &value)
{ {
/*if (change == QGraphicsItem::ItemCursorHasChanged && scene()) if ((change == QGraphicsItem::ItemSelectedHasChanged) && scene()) {
{
unsetCursor();
}
if ((change == QGraphicsItem::ItemSelectedHasChanged)
&& scene())
{
if (isSelected()) if (isSelected())
{
scene()->setActiveWindow(this); scene()->setActiveWindow(this);
} else {
else
{
if(scene()->activeWindow() == this) if(scene()->activeWindow() == this)
{
scene()->setActiveWindow(0); scene()->setActiveWindow(0);
}
} }
}*/ }
QVariant newValue = mDelegate->itemChange(change, value); QVariant newValue = mDelegate->itemChange(change, value);
return QGraphicsWebView::itemChange(change, newValue); return QGraphicsWebView::itemChange(change, newValue);
//return QGraphicsWebView::itemChange(change, value);
} }
void UBGraphicsWebView::setUuid(const QUuid &pUuid) void UBGraphicsWebView::setUuid(const QUuid &pUuid)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment