Skip to content
Snippets Groups Projects
Commit 8a6543b5 authored by gambas's avatar gambas
Browse files

Database editor: Locating SQLite database inside the home directory or inside...

Database editor: Locating SQLite database inside the home directory or inside the project now works correctly.

[DEVELOPMENT ENVIRONMENT]
* BUG: Database editor: Locating SQLite database inside the home directory or inside the project now works correctly.
parent d721a823
No related branches found
No related tags found
No related merge requests found
Pipeline #59333703 failed
......@@ -2,7 +2,7 @@
Title=Gambas 3
Startup=Project
Icon=img/logo/logo-ide.png
Version=3.12.90
Version=3.13.90
VersionFile=1
Component=gb.image
Component=gb.gui.qt
......
......@@ -14,9 +14,11 @@ Private $bError As Boolean
Public Sub MakeAbsolutePath(sPath As String) As String
If sPath Begins "~/" Then
If sPath = "~" Then
sPath = User.Home
Else If sPath Begins "~/" Then
sPath = User.Home &/ Mid$(sPath, 3)
Else If File.IsRelative(sPath) Then
Else If File.IsRelative(sPath) Or If Not sPath Then
sPath = Project.Dir &/ sPath
Endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment