Skip to content

Commit c7cde46

Browse files
committedFeb 23, 2016
Fix drag&drop of spatialite tables (fixes #14237)
1 parent 63be2e5 commit c7cde46

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/db_manager/db_plugins/spatialite

1 file changed

+1
-1
lines changed
 

‎python/plugins/db_manager/db_plugins/spatialite/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def mimeUri(self):
188188
if self.database().connector.isGpkg():
189189
# QGIS has no provider to load Geopackage vectors, let's use OGR
190190
return u"vector:ogr:%s:%s" % (self.name, self.ogrUri())
191-
return VectorTable.mimeUri(self)
191+
return Table.mimeUri(self)
192192

193193
def toMapLayer(self):
194194
from qgis.core import QgsVectorLayer

0 commit comments

Comments
 (0)
Please sign in to comment.