Skip to content

Commit

Permalink
Fix symbol '&' not showing in Document Switcher
Browse files Browse the repository at this point in the history
Disable prefix processing in document switcher.

Fix #15117, close #15118
  • Loading branch information
ozone10 authored and donho committed May 11, 2024
1 parent 971aaf6 commit 9d6e6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PowerEditor/src/WinControls/TaskList/TaskListDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,5 +235,5 @@ void TaskListDlg::drawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
// DRAW TEXT
//
::SetTextColor(hDC, textColor);
::DrawText(hDC, label, lstrlen(label), &rect, DT_SINGLELINE | DT_VCENTER | DT_LEFT);
::DrawText(hDC, label, lstrlen(label), &rect, DT_SINGLELINE | DT_VCENTER | DT_NOPREFIX);
}

0 comments on commit 9d6e6d2

Please sign in to comment.