Skip to content

Commit

Permalink
Fix drag&drop of spatialite tables (fixes #14237)
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Feb 23, 2016
1 parent 63be2e5 commit c7cde46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/spatialite/plugin.py
Expand Up @@ -188,7 +188,7 @@ def mimeUri(self):
if self.database().connector.isGpkg():
# QGIS has no provider to load Geopackage vectors, let's use OGR
return u"vector:ogr:%s:%s" % (self.name, self.ogrUri())
return VectorTable.mimeUri(self)
return Table.mimeUri(self)

def toMapLayer(self):
from qgis.core import QgsVectorLayer
Expand Down

0 comments on commit c7cde46

Please sign in to comment.