From be22f9e6346b3d0857392e5fda57c65999028caa Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Sep 2014 17:43:48 +0000 Subject: [PATCH] change the size of checkbox and radiobutton, the 14*14 is most common used size git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/univ/themes/gtk.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/univ/themes/gtk.cpp b/src/univ/themes/gtk.cpp index 51f47cde8f..fad14c9d68 100644 --- a/src/univ/themes/gtk.cpp +++ b/src/univ/themes/gtk.cpp @@ -201,9 +201,9 @@ public: #endif // wxUSE_SCROLLBAR virtual wxSize GetCheckBitmapSize() const - { return wxSize(10, 10); } + { return wxSize(14, 14); } virtual wxSize GetRadioBitmapSize() const - { return wxSize(11, 11); } + { return wxSize(14, 14); } virtual wxCoord GetCheckItemMargin() const { return 2; }