mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Release adjustments
* Use appendMenuItems instead of ContextCommandBuilder * Specify RimEclipseCaseCollection menu features once * Add function to enable up/down arrows for combo box * Guard crash when closing project * Improve UI for grid case ensemble - Create a view for the first case in the ensemble - Show case name in view title - Enable up/down buttons to Eclipse case * Make sure 3D views in grid ensemble are created on project load
This commit is contained in:
@@ -18,8 +18,10 @@
|
||||
|
||||
#include "RiuTools.h"
|
||||
|
||||
#include "QMenu"
|
||||
#include "QObject"
|
||||
#include "cafPdmUiComboBoxEditor.h"
|
||||
|
||||
#include <QMenu>
|
||||
#include <QObject>
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
@@ -48,3 +50,16 @@ void RiuTools::enableAllActionsOnShow( QObject* object, QMenu* menu )
|
||||
} );
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuTools::enableUpDownArrowsForComboBox( caf::PdmUiEditorAttribute* attribute )
|
||||
{
|
||||
if ( auto attrib = dynamic_cast<caf::PdmUiComboBoxEditorAttribute*>( attribute ) )
|
||||
{
|
||||
attrib->nextIcon = QIcon( ":/ComboBoxDown.svg" );
|
||||
attrib->previousIcon = QIcon( ":/ComboBoxUp.svg" );
|
||||
attrib->showPreviousAndNextButtons = true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user