From bcef560cb7a3d6486e9bd4790f3c31defce0e75d Mon Sep 17 00:00:00 2001 From: timlinux Date: Sun, 9 Jan 2005 10:45:35 +0000 Subject: [PATCH] Fix for selection colour not being set properly git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@2603 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/qgsprojectproperties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qgsprojectproperties.cpp b/src/qgsprojectproperties.cpp index 1ac125f2948..073518e34c3 100644 --- a/src/qgsprojectproperties.cpp +++ b/src/qgsprojectproperties.cpp @@ -205,7 +205,7 @@ void QgsProjectProperties::apply() QgsProject::instance()->writeEntry("Gui","/SelectionColorRedPart",myColour.red()); QgsProject::instance()->writeEntry("Gui","/SelectionColorGreenPart",myColour.green()); QgsProject::instance()->writeEntry("Gui","/SelectionColorBluePart",myColour.blue()); - QgsRenderer::mSelectionColor=QColor(0,0,0); + QgsRenderer::mSelectionColor=myColour; }