View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001397 | Double Commander | Graphical user interface | public | 2016-06-02 16:59 | 2020-11-30 07:43 |
| Reporter | cordylus | Assigned To | Alexx2000 | ||
| Priority | normal | Severity | trivial | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Projection | none | ETA | none | ||
| Target Version | 0.8.0 | Fixed in Version | 0.8.0 | ||
| Summary | 0001397: Двойной щелчок по столбцу сортировки не воспринимается как два клика | ||||
| Description | Я хочу быстро отсортировать по недефолтному направлению, первый щелчок - переключение на этот столбец сортировки, второй должен быть разворотом сортировки в обратном направлении. Но если второй щелчок происходит достаточно быстро после первого, он, видимо, воспринимается как double click, и ничего не происходит. | ||||
| Tags | No tags attached. | ||||
| Attached Files | bug1397.patch (605 bytes)
Index: src/fileviews/ufileviewheader.pas
===================================================================
--- src/fileviews/ufileviewheader.pas (revision 7605)
+++ src/fileviews/ufileviewheader.pas (working copy)
@@ -72,6 +72,7 @@
destructor Destroy; override;
procedure Click; override;
+ procedure DblClick; override;
procedure UpdateHeader;
procedure UpdateSorting(Sorting: TFileSortings);
end;
@@ -435,6 +436,11 @@
end;
end;
+procedure TFileViewFixedHeader.DblClick;
+begin
+ Click;
+end;
+
procedure TFileViewFixedHeader.UpdateHeader;
var
I: Integer;
| ||||
| Fixed in Revision | 7611 | ||||
| Operating system | |||||
| Widgetset | |||||
| Architecture | |||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2016-06-02 16:59 | cordylus | New Issue | |
| 2017-06-01 17:44 | cordylus | File Added: bug1397.patch | |
| 2017-06-04 00:10 | Alexx2000 | Fixed in Revision | => 7611 |
| 2017-06-04 00:10 | Alexx2000 | Assigned To | => Alexx2000 |
| 2017-06-04 00:10 | Alexx2000 | Status | new => resolved |
| 2017-06-04 00:10 | Alexx2000 | Resolution | open => fixed |
| 2017-06-04 00:10 | Alexx2000 | Fixed in Version | => 0.8.0 |
| 2017-06-04 00:10 | Alexx2000 | Target Version | => 0.8.0 |
| 2020-11-30 07:43 | Alexx2000 | Status | resolved => closed |