# HG changeset patch # User Michiel Broek # Date 1698069334 -7200 # Node ID 9161465e0eac930e3b0c15b4221138d66e604bcc # Parent 73501316e30067e3d6097390ffcc99dd11dcd353 Fix block hops display when dry-hop is done, and extract hop is done after packaging. diff -r 73501316e300 -r 9161465e0eac src/EditProductTab4.cpp --- a/src/EditProductTab4.cpp Wed Oct 18 16:00:06 2023 +0200 +++ b/src/EditProductTab4.cpp Mon Oct 23 15:55:34 2023 +0200 @@ -39,6 +39,10 @@ { if (stage > PROD_STAGE_BREW && useat < HOP_USEAT_DRY_HOP) return true; + if (stage > PROD_STAGE_TERTIARY && useat < HOP_USEAT_BOTTLING) + return true; + if (stage > PROD_STAGE_PACKAGE) + return true; return false; }