mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
Issue #618: exchange sort arrows on data grid headers
This commit is contained in:
@@ -5384,9 +5384,9 @@ begin
|
||||
if SortIndex > -1 then begin
|
||||
Inc(SortArea.Left, SortArea.Width - Sender.Images.Width);
|
||||
if DataGridSortColumns[SortIndex].SortDirection = ORDER_ASC then
|
||||
SortText := '▼'
|
||||
SortText := '▲'
|
||||
else
|
||||
SortText := '▲';
|
||||
SortText := '▼';
|
||||
SortText := IfThen(SortIndex<9, NumSort[SortIndex], NumSort[9]) + SortText;
|
||||
SetTextColor(DC, ColorToRGB(clGrayText));
|
||||
PaintInfo.TargetCanvas.TextOut(SortArea.Left, SortArea.Top, SortText);
|
||||
|
||||
Reference in New Issue
Block a user