diff --git a/Tactical/Interface Panels.cpp b/Tactical/Interface Panels.cpp index fb7030a7..d22cd6b2 100644 --- a/Tactical/Interface Panels.cpp +++ b/Tactical/Interface Panels.cpp @@ -6436,7 +6436,11 @@ void KeyRingItemPanelButtonCallback( MOUSE_REGION * pRegion, INT32 iReason ) InvalidateRegion( 0, 107, 261, 359 ); } - InitKeyRingPopup( pSoldier, 35, sStartYPosition, sWidth, sHeight ); + //CHRISL: In OIV mode, we don't want to offset the keyring popup. + if(UsingNewInventorySystem() == false) + InitKeyRingPopup( pSoldier, 0, sStartYPosition, sWidth, sHeight ); + else + InitKeyRingPopup( pSoldier, 35, sStartYPosition, sWidth, sHeight ); } } @@ -7019,3 +7023,4 @@ void GoToMapScreenFromTactical( void ) +