@@ -496,7 +496,9 @@ void QgsProjectionSelector::applyUserProjList(QSet<QString> * crsFilter)
496
496
497
497
QFont fontTemp = mUserProjList ->font (0 );
498
498
fontTemp.setItalic (TRUE );
499
+ fontTemp.setBold (TRUE );
499
500
mUserProjList ->setFont (0 , fontTemp);
501
+ mUserProjList ->setIcon (0 ,QIcon (QgsApplication::activeThemePath ()+" user.png" ));
500
502
501
503
// determine where the user proj database lives for this user. If none is found an empty
502
504
// now only will be shown
@@ -568,17 +570,21 @@ void QgsProjectionSelector::applyProjList(QSet<QString> * crsFilter)
568
570
//
569
571
// Geographic coordinate system node
570
572
mGeoList = new QTreeWidgetItem (lstCoordinateSystems,QStringList (tr (" Geographic Coordinate Systems" )));
571
-
573
+
572
574
QFont fontTemp = mGeoList ->font (0 );
573
575
fontTemp.setItalic (TRUE );
576
+ fontTemp.setBold (TRUE );
574
577
mGeoList ->setFont (0 , fontTemp);
578
+ mGeoList ->setIcon (0 ,QIcon (QgsApplication::activeThemePath ()+" geographic.png" ));
575
579
576
580
// Projected coordinate system node
577
581
mProjList = new QTreeWidgetItem (lstCoordinateSystems,QStringList (tr (" Projected Coordinate Systems" )));
578
582
579
583
fontTemp = mProjList ->font (0 );
580
584
fontTemp.setItalic (TRUE );
585
+ fontTemp.setBold (TRUE );
581
586
mProjList ->setFont (0 , fontTemp);
587
+ mProjList ->setIcon (0 ,QIcon (QgsApplication::activeThemePath ()+" transformed.png" ));
582
588
583
589
// bail out in case the projections db does not exist
584
590
// this is neccessary in case the pc is running linux with a
0 commit comments