Skip to content

Commit

Permalink
wxGUI/modules: fix import SQLite geometry data (OSGeo#2491)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi authored and neteler committed Nov 7, 2023
1 parent a4563d5 commit 5487772
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions gui/wxpython/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,7 @@ def _parseFormats(output, writableOnly=False):
if name in (
"PostgreSQL",
"SQLite",
"SQLite / Spatialite",
"ODBC",
"ESRI Personal GeoDatabase",
"Rasterlite",
Expand Down
2 changes: 1 addition & 1 deletion gui/wxpython/gui_core/gselect.py
Original file line number Diff line number Diff line change
Expand Up @@ -2167,7 +2167,7 @@ def GetDsn(self):
def SetDatabase(self, db):
"""Update database panel."""
sizer = self.dbPanel.GetSizer()
showBrowse = db in ("SQLite", "Rasterlite")
showBrowse = db in ("SQLite", "SQLite / Spatialite", "Rasterlite")
showDirbrowse = db in ("FileGDB")
showChoice = db in (
"PostgreSQL",
Expand Down

0 comments on commit 5487772

Please sign in to comment.