Applied patch [ 800086 ] GridCellTextEditor wxTE_RICH misbehaving

Don't set the value of the hidden editor control (useless)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@25118 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-01-11 14:28:38 +00:00
parent ff13ad9d15
commit a2c347938b

View File

@@ -657,7 +657,8 @@ bool wxGridCellTextEditor::EndEdit(int row, int col,
grid->GetTable()->SetValue(row, col, value);
m_startValue = wxEmptyString;
Text()->SetValue(m_startValue);
// No point in setting the text of the hidden control
//Text()->SetValue(m_startValue);
return changed;
}