You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
overviewCanvas->setWhatsThis( tr( "Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas." ) );
int red = settings.value( "/qgis/default_canvas_color_red", 255 ).toInt();
2291
+
int green = settings.value( "/qgis/default_canvas_color_green", 255 ).toInt();
2292
+
int blue = settings.value( "/qgis/default_canvas_color_blue", 255 ).toInt();
2293
+
mOverviewCanvas->setBackgroundColor( QColor( red, green, blue ) );
2294
+
2295
+
mOverviewCanvas->setWhatsThis( tr( "Map overview canvas. This canvas can be used to display a locator map that shows the current extent of the map canvas. The current extent is shown as a red rectangle. Any layer on the map can be added to the overview canvas." ) );
mOverviewMapCursor = newQCursor( overviewPanBmp, overviewPanBmpMask, 0, 0 ); //set upper left corner as hot spot - this is better when extent marker is small; hand won't cover the marker
0 commit comments