Project tree: Add the "Add everything to repository" button.

[DEVELOPMENT ENVIRONMENT]
* NEW: Project tree: Add the "Add everything to repository" button.
This commit is contained in:
gambas 2021-10-18 23:05:26 +02:00
parent 73801f2e5e
commit cf1343d559
2 changed files with 14 additions and 2 deletions

View file

@ -3280,3 +3280,9 @@ Public Sub btnVcChanges_Click()
FDebugInfo.btnVcChanges_Click
End
Public Sub btnVcAddAll_Click()
FMain.mnuAddVersionAll_Click()
End

View file

@ -205,6 +205,7 @@
{ mnuVcAddAll Menu mnuAddVersionAll
Name = "mnuVcAddAll"
Text = ("Add everything to repository")
Picture = Picture["icon:/small/added"]
}
{ mnuVcBranch Menu
Action = "vc-branch"
@ -1288,16 +1289,21 @@
MoveScaled(2,1,27,4)
Padding = 1
{ dwgBranchColor DrawingArea
MoveScaled(0,0,8,4)
MoveScaled(0,0,5,4)
Visible = False
Mouse = Mouse.Pointing
Expand = True
}
{ btnVcChanges ToolButton
MoveScaled(10,0,4,4)
MoveScaled(6,0,4,4)
ToolTip = ("Modifications.") & "..."
Picture = Picture["icon:/small/modified"]
}
{ btnVcAddAll ToolButton
MoveScaled(10,0,4,4)
ToolTip = ("Add everything to repository")
Picture = Picture["icon:/small/added"]
}
{ btnVcCommit ToolButton
MoveScaled(14,0,4,4)
ToolTip = ("Commit") & "..."