]> git.saurik.com Git - wxWidgets.git/commitdiff
Make generic wxDataViewCtrl rows a bit taller.
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 23 Nov 2011 13:43:04 +0000 (13:43 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 23 Nov 2011 13:43:04 +0000 (13:43 +0000)
They now use the same height that Windows 7's Explorer uses. This makes
more inline editor controls fit comfortably.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/datavgen.cpp

index 562ead4d8ee96ff528cdad18241b2f097d19a4af..2daef4e73ced328da9856736d5e5126838982318 100644 (file)
@@ -1357,7 +1357,7 @@ wxDataViewMainWindow::wxDataViewMainWindow( wxDataViewCtrl *parent, wxWindowID i
     m_useCellFocus = false;
     m_currentRow = 0;
 
-    m_lineHeight = wxMax( 17, GetCharHeight() + 2 ); // 17 = mini icon height + 1
+    m_lineHeight = wxMax( 17, GetCharHeight() + 4 ); // 17 = mini icon height + 1
 
 #if wxUSE_DRAG_AND_DROP
     m_dragCount = 0;