From b76d1509ce2370dce866da8a2624778d245152f7 Mon Sep 17 00:00:00 2001 From: tanderson Date: Sun, 15 Jan 2012 11:45:16 -0500 Subject: [PATCH] changing Gui/BitmapFactory default pixmap size Allows toolbar pixmaps to scale correctly --- src/Gui/BitmapFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/BitmapFactory.cpp b/src/Gui/BitmapFactory.cpp index 21b6dead5..bbf130914 100644 --- a/src/Gui/BitmapFactory.cpp +++ b/src/Gui/BitmapFactory.cpp @@ -202,7 +202,7 @@ QPixmap BitmapFactoryInst::pixmap(const char* name) const // first check if it's an SVG because Qt's qsvg4 module shouldn't be used therefore if (icon.isNull()) { - icon = pixmapFromSvg(name, QSize(24,24)); + icon = pixmapFromSvg(name, QSize(64,64)); } // try to find it in the given directories