diff --git a/MantidQt/SliceViewer/src/SliceViewer.cpp b/MantidQt/SliceViewer/src/SliceViewer.cpp index 6abc16379a41..bbba5e68b288 100644 --- a/MantidQt/SliceViewer/src/SliceViewer.cpp +++ b/MantidQt/SliceViewer/src/SliceViewer.cpp @@ -2948,7 +2948,7 @@ void SliceViewer::switchAxis() { if (m_canSwitchScales) { // cannot be called when sliceviewer first // initialised because axis is inaccurate auto isHKL = API::isHKLDimensions(m_ws, m_dimX, m_dimY); - if (isHKL) { + if (isHKL && ui.btnNonOrthogonalToggle->isChecked()) { applyNonOrthogonalAxisScaleDraw(); } else { applyOrthogonalAxisScaleDraw(); diff --git a/docs/source/release/v3.9.1/index.rst b/docs/source/release/v3.9.1/index.rst index b71b6298bd07..c61d5b619750 100644 --- a/docs/source/release/v3.9.1/index.rst +++ b/docs/source/release/v3.9.1/index.rst @@ -24,6 +24,7 @@ Please cite any usage of Mantid as follows: Changes in this version ----------------------- +* `18833 `_ Added check for if nonorthogonal axes should be displayed * `18891 `_ Fix bug in gd_prtn_chrg for chunked data * `18907 `_ Fix zeropadding for IMAT in Facilities.XML * `18914 `_ Fix mass ws deletion bug @@ -38,6 +39,8 @@ Summary of impact | Issue | Impact | Solution | Side Effect | | | | | Probability | +=======+===================================================================================+=============================================+==============+ +| 18833 | HKL axes now respect the non-orthogonal checkbox | Add check if button is in a checked state | **low** | ++-------+-----------------------------------------------------------------------------------+---------------------------------------------+--------------+ | 18891 | Fixes bug in gd_prtn_chrg for chunked data | Recalculate proton charge just prior to use | **low** | +-------+-----------------------------------------------------------------------------------+---------------------------------------------+--------------+ | 18907 | Allows IMAT to use general file finding mechanism | Facilities file update | **low** |