March 2, 2011 Short Description: Fix: Rule priorities not shown on annual series slot Bug Number: 5039 Release notes (y/n): Yes (6.0.3) For Release Nums: 6.0.3 and 6.1 Gnats 5039: Rule priorities not shown on annual series slot in monthly model Fixed in 6.0.3 prerel and 6.1 builds. See illustration: https://cadswes2.colorado.edu/~philw/2011/bugs/5039/Problem-4Slots.gif This was a problem with the Open Series Slot dialog for ANY annual timestep series slot. The cause was an incorrectly applied check for whether or not the display for this slot supported time dividers: Always "no" for annual slots. ----------------------- Q3GUI/SlotQDlgTable.cpp ----------------------- In method: int SlotQDlgTable::cellPriority (int row, int col) const // Gnats 5039 (3-2011, RW 6.1): "Rule priorities not shown on annual // series slot." Holy cow, what does having time dividers have to do // with rule priorities? (It so happens that we don't support time // dividers for annual timestep series slots). This check doesn't // belong here. Non-Series slots are filtered out below. // //-- if (_timeDivType == SQD_TIMEDIV_NONE) return (-1); //-- //---------------------------------------------->> ---