Added space after list item number, otherwise number is hard against following text.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -38,6 +38,7 @@ All (GUI):
|
|||||||
windows (wxDialog, wxFrame).
|
windows (wxDialog, wxFrame).
|
||||||
- Fixed memory leak of pending events in wxEvtHandler
|
- Fixed memory leak of pending events in wxEvtHandler
|
||||||
- Added wxRadioBox::IsItemEnabled/Shown()
|
- Added wxRadioBox::IsItemEnabled/Shown()
|
||||||
|
- Added space after list item number in wxHTML.
|
||||||
|
|
||||||
wxMSW:
|
wxMSW:
|
||||||
|
|
||||||
|
@@ -254,7 +254,7 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI")
|
|||||||
{
|
{
|
||||||
c->SetAlignHor(wxHTML_ALIGN_RIGHT);
|
c->SetAlignHor(wxHTML_ALIGN_RIGHT);
|
||||||
wxString markStr;
|
wxString markStr;
|
||||||
markStr.Printf(wxT("%i."), m_Numbering);
|
markStr.Printf(wxT("%i. "), m_Numbering);
|
||||||
c->InsertCell(new wxHtmlWordCell(markStr, *(m_WParser->GetDC())));
|
c->InsertCell(new wxHtmlWordCell(markStr, *(m_WParser->GetDC())));
|
||||||
}
|
}
|
||||||
m_WParser->CloseContainer();
|
m_WParser->CloseContainer();
|
||||||
|
Reference in New Issue
Block a user