#6460 Improve consistency of icons on high-DPI displays

This commit is contained in:
Gaute Lindkvist
2020-09-08 10:31:23 +02:00
parent cd3e331e12
commit 7afbae6597
19 changed files with 23 additions and 16 deletions

View File

@@ -340,7 +340,7 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
menuBuilder << "RicImportWellMeasurementsFeature";
menuBuilder.subMenuEnd();
menuBuilder.addSeparator();
menuBuilder.subMenuStart( "Export Well Paths", QIcon( ":/Save.png" ) );
menuBuilder.subMenuStart( "Export Well Paths", QIcon( ":/Save24x24.png" ) );
menuBuilder << "RicExportSelectedWellPathsFeature";
menuBuilder << "RicExportVisibleWellPathsFeature";
menuBuilder.subMenuEnd();
@@ -1343,7 +1343,11 @@ int RimContextCommandBuilder::appendExportWellPaths( caf::CmdFeatureMenuBuilder&
candidates << "RicExportSelectedWellPathsFeature";
candidates << "RicExportVisibleWellPathsFeature";
return appendSubMenuWithCommands( menuBuilder, candidates, "Export Well Paths", QIcon( ":/Save.png" ), addSeparatorBeforeMenu );
return appendSubMenuWithCommands( menuBuilder,
candidates,
"Export Well Paths",
QIcon( ":/Save24x24.png" ),
addSeparatorBeforeMenu );
}
//-------------------------------------------------------------------------------------------------