View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000569 | Double Commander | Graphical user interface | public | 2012-09-12 22:28 | 2013-07-13 05:50 |
Reporter | EagleXK | Assigned To | cobines | ||
Priority | low | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Projection | none | ETA | none | ||
Product Version | 0.6.0 (trunk) | Product Build | 4959 | ||
Fixed in Version | 0.5.5 | ||||
Summary | 0000569: Displaying tab with folder name containing ampersand | ||||
Description | Папка с амперсандом в имени отображается без оного символа, т.к. он преобразует следующий за ним символ имени папки в горячую клавишу таба. | ||||
Steps To Reproduce | Назвать папку, к примеру, Tom&Jerry | ||||
Tags | No tags attached. | ||||
Attached Files | amperdir.patch (499 bytes)
Index: src/ufileviewnotebook.pas =================================================================== --- src/ufileviewnotebook.pas (revision 4959) +++ src/ufileviewnotebook.pas (working copy) @@ -300,7 +300,7 @@ if (tb_text_length_limit in gDirTabOptions) and (UTF8Length(NewCaption) > gDirTabLimit) then NewCaption := UTF8Copy(NewCaption, 1, gDirTabLimit) + '...'; - Caption := NewCaption; + Caption := StringReplace(NewCaption, '&', '&&', [rfReplaceAll]); end; end; | ||||
Fixed in Revision | 4966 | ||||
Operating system | Windows | ||||
Widgetset | Win32 | ||||
Architecture | 32-bit | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2012-09-12 22:28 | EagleXK | New Issue | |
2012-09-12 23:06 | pktfag | File Added: amperdir.patch | |
2012-09-15 10:09 | cobines | Fixed in Revision | => 4966 |
2012-09-15 10:09 | cobines | Note Added: 0000916 | |
2012-09-15 10:09 | cobines | Status | new => resolved |
2012-09-15 10:09 | cobines | Fixed in Version | => 0.5.5 |
2012-09-15 10:09 | cobines | Resolution | open => fixed |
2012-09-15 10:09 | cobines | Assigned To | => cobines |
2013-07-13 05:50 | EagleXK | Status | resolved => closed |