From ec53826c06f6a4de6e9d0c6dedead881458736fc Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 24 Aug 2002 20:03:42 +0000 Subject: [PATCH] Fixed wxGridCellFloatEditor::Clone Changed wxGridCellEditor::GetString to use %f instead of %g to match the Renderer, otherwise it would truncate/round the value to m_precision significant digits instead of m_precision digits after the decimal point. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16745 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/grid.h | 2 +- src/generic/grid.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h index e74f117ae4..12f1db02dd 100644 --- a/include/wx/generic/grid.h +++ b/include/wx/generic/grid.h @@ -477,7 +477,7 @@ public: virtual void StartingKey(wxKeyEvent& event); virtual wxGridCellEditor *Clone() const - { return new wxGridCellFloatEditor; } + { return new wxGridCellFloatEditor(m_width, m_precision); } // parameters string format is "width,precision" virtual void SetParameters(const wxString& params); diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index 20389dfc48..efd7c85f4d 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -1049,16 +1049,16 @@ wxString wxGridCellFloatEditor::GetString() const if ( m_width == -1 ) { // default width/precision - fmt = _T("%g"); + fmt = _T("%f"); } else if ( m_precision == -1 ) { // default precision - fmt.Printf(_T("%%%d.g"), m_width); + fmt.Printf(_T("%%%d.f"), m_width); } else { - fmt.Printf(_T("%%%d.%dg"), m_width, m_precision); + fmt.Printf(_T("%%%d.%df"), m_width, m_precision); } return wxString::Format(fmt, m_valueOld); @@ -5110,7 +5110,7 @@ void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent& event ) SetCurrentCell( coords ); if ( m_selection ) { - if ( m_selection->GetSelectionMode() != + if ( m_selection->GetSelectionMode() != wxGrid::wxGridSelectCells ) { HighlightBlock( coords, coords ); -- 2.45.2