Skip to content

Commit

Permalink
[browser] Correctly refresh postgres schemas when dropping tables
Browse files Browse the repository at this point in the history
(cherry-picked from 5a41748)
  • Loading branch information
nyalldawson committed Aug 26, 2016
1 parent 3716478 commit c5aa2e1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/providers/postgres/qgspostgresdataitems.cpp
Expand Up @@ -691,9 +691,13 @@ bool QgsPGSchemaItem::handleDrop( const QMimeData * data, Qt::DropAction )
{
QgsPGConnectionItem *conn = qobject_cast<QgsPGConnectionItem *>( parent() );
if ( !conn )
return 0;
return false;

bool result = conn->handleDrop( data, mName );
if ( result )
refresh();

return conn->handleDrop( data, mName );
return result;
}

// ---------------------------------------------------------------------------
Expand Down

0 comments on commit c5aa2e1

Please sign in to comment.