Skip to content

Commit

Permalink
Fix wrong tab order of recent filters pulldown on data grid filter panel
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarbecker committed Dec 11, 2022
1 parent 3ce5672 commit d02fdb8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/main.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ object MainForm: TMainForm
Height = 22
Action = actApplyFilter
Anchors = [akTop, akRight]
TabOrder = 2
TabOrder = 3
end
object btnFilterClear: TButton
Left = 713
Expand All @@ -1155,7 +1155,7 @@ object MainForm: TMainForm
Height = 22
Action = actClearFilterEditor
Anchors = [akTop, akRight]
TabOrder = 3
TabOrder = 4
end
object SynMemoFilter: TSynMemo
Left = 0
Expand All @@ -1170,7 +1170,7 @@ object MainForm: TMainForm
Font.Name = 'Courier New'
Font.Style = []
PopupMenu = popupFilter
TabOrder = 0
TabOrder = 1
CodeFolding.GutterShapeSize = 11
CodeFolding.CollapsedLineColor = clGrayText
CodeFolding.FolderBarLinesColor = clGrayText
Expand Down Expand Up @@ -1204,7 +1204,7 @@ object MainForm: TMainForm
Width = 156
Height = 21
Anchors = [akTop, akRight]
TabOrder = 1
TabOrder = 2
OnChange = editFilterSearchChange
OnEnter = editFilterSearchEnter
OnExit = editFilterSearchExit
Expand All @@ -1219,7 +1219,7 @@ object MainForm: TMainForm
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
DropDownCount = 20
TabOrder = 4
TabOrder = 0
OnSelect = LoadRecentFilter
end
end
Expand Down

0 comments on commit d02fdb8

Please sign in to comment.