Common/SQLEditor: reverse placeholder order, remove placeholder title bar

This commit is contained in:
Jonathan Jenne
2022-07-15 09:35:34 +02:00
parent ad3de3caa6
commit 8e47ba31e7
3 changed files with 6 additions and 10 deletions

View File

@@ -106,10 +106,7 @@ Public Class frmSQLEditor
End Sub
Private Function LoadPlaceholders() As List(Of GalleryItemGroup)
Dim oPlaceholders = New List(Of GalleryItemGroup)() From {
Placeholders.GetInternalPlaceholders(),
Placeholders.GetUserPlaceholders()
}
Dim oPlaceholders = New List(Of GalleryItemGroup)()
Dim oAutomaticAttributes = Placeholders.GetAutomaticPlaceholders(PlaceholdersAutomatic, PlaceholdersAutomaticPrefix, PlaceholdersAutomaticTitle)
If oAutomaticAttributes IsNot Nothing Then
@@ -130,6 +127,9 @@ Public Class frmSQLEditor
oPlaceholders.Add(Placeholders.GetClipboardPlaceholder)
End If
oPlaceholders.Add(Placeholders.GetUserPlaceholders())
oPlaceholders.Add(Placeholders.GetInternalPlaceholders())
Return oPlaceholders
End Function