Project open dialog: Ignore '.project' files at the root of home folders.

[DEVELOPMENT ENVIRONMENT]
* BUG: Fix debug browser selection button management again.
* BUG: Project open dialog: Ignore '.project' files at the root of home folders.
This commit is contained in:
Benoît Minisini 2022-06-29 00:30:19 +02:00
parent ae0c3bb573
commit 7a4f7eaea1
3 changed files with 9 additions and 2 deletions

View file

@ -307,7 +307,7 @@ Public Sub Debug_Read(Data As String)
Dim sWhere As String
Dim iPos As Integer
'ebug Quote(Data)
'Debug Quote(Data)
$sBuffer &= Data
iPos = InStr($sBuffer, "\n")
If iPos = 0 Then Return
@ -801,6 +801,7 @@ End
Private Sub WriteCommand(sCmd As String)
'Debug Quote(sCmd)
If $hRemoteFifo Then
If DEBUG_REMOTE Then Debug "---> "; sCmd
Print #$hRemoteFifo, sCmd

View file

@ -1282,7 +1282,7 @@ Public Sub UpdateMenu()
Action[sAction].Enabled = bEnabled
Next
For Each sAction In ["run-extern", "gui", "profile", "open-profile", "run-with", "run-remote", "debug-config"]
For Each sAction In ["run-extern", "gui", "debug-browser", "profile", "open-profile", "run-with", "run-remote", "debug-config"]
Action[sAction].Enabled = bEnabled
Next
@ -1329,6 +1329,9 @@ Public Sub UpdateMenu()
Action["debug-browser"].Visible = bVisible
UpdateDebugBrowser
Action["browser"].Visible = False
If bVisible And If Project.Running And If Not Project.Config["/Debug/Browser"] Then Action["browser"].Visible = True
'btnShowMenu.Visible = Not Me.Menus.Visible
'btnShowMenu.Raise

View file

@ -6932,6 +6932,9 @@ Public Sub FindProjectPath(sPath As String) As String
Do
If sPath = "/" Then Break
If sPath Begins "/home" And If Split(sPath, "/", "", True).Count = 2 Then Break
If Exist(sPath &/ ".project") Then
hFile = Open sPath &/ ".project"