From bb2a1751c85adc46bf3b00ff919d2e8ecaf2a048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20St=C3=B8ren?= Date: Thu, 17 Nov 2016 17:37:01 +0100 Subject: [PATCH] Added icons to some well log commands --- .../WellLogCommands/RicNewWellLogCurveExtractionFeature.cpp | 1 + .../Commands/WellLogCommands/RicNewWellLogPlotFeature.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/ApplicationCode/Commands/WellLogCommands/RicNewWellLogCurveExtractionFeature.cpp b/ApplicationCode/Commands/WellLogCommands/RicNewWellLogCurveExtractionFeature.cpp index e946f17031..29313041d0 100644 --- a/ApplicationCode/Commands/WellLogCommands/RicNewWellLogCurveExtractionFeature.cpp +++ b/ApplicationCode/Commands/WellLogCommands/RicNewWellLogCurveExtractionFeature.cpp @@ -88,6 +88,7 @@ void RicNewWellLogCurveExtractionFeature::onActionTriggered(bool isChecked) void RicNewWellLogCurveExtractionFeature::setupActionLook(QAction* actionToSetup) { actionToSetup->setText("New Well Log Extraction Curve"); + actionToSetup->setIcon(QIcon(":/WellLogCurve16x16.png")); } //-------------------------------------------------------------------------------------------------- diff --git a/ApplicationCode/Commands/WellLogCommands/RicNewWellLogPlotFeature.cpp b/ApplicationCode/Commands/WellLogCommands/RicNewWellLogPlotFeature.cpp index 484664d25f..a743d82381 100644 --- a/ApplicationCode/Commands/WellLogCommands/RicNewWellLogPlotFeature.cpp +++ b/ApplicationCode/Commands/WellLogCommands/RicNewWellLogPlotFeature.cpp @@ -60,4 +60,5 @@ void RicNewWellLogPlotFeature::onActionTriggered(bool isChecked) void RicNewWellLogPlotFeature::setupActionLook(QAction* actionToSetup) { actionToSetup->setText("New Well Log Plot"); + actionToSetup->setIcon(QIcon(":/WellLogPlot16x16.png")); }