From b2748ea4273efcc4bfc14463533d3308a3fd7141 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 31 Oct 2011 10:17:12 +0000 Subject: [PATCH] 0000457: Fails to remember toolbar icon size git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5082 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d --- src/Gui/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Application.cpp b/src/Gui/Application.cpp index 1218c192f..342934929 100644 --- a/src/Gui/Application.cpp +++ b/src/Gui/Application.cpp @@ -1558,7 +1558,7 @@ void Application::runApplication(void) // set toolbar icon size ParameterGrp::handle hGrp = WindowParameter::getDefaultParameter()->GetGroup("General"); int size = hGrp->GetInt("ToolbarIconSize", 0); - if (size > 16) // must not be lower than this + if (size >= 16) // must not be lower than this mw.setIconSize(QSize(size,size)); // init the Inventor subsystem