Changeset 61273 in vbox for trunk/src/VBox/ValidationKit/testmanager/webui
- Timestamp:
- May 29, 2016 6:59:22 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuireport.py
r61272 r61273 335 335 # Generate the graph. 336 336 # 337 fGenerateGraph = True;337 fGenerateGraph = len(aidSortedRaw) <= 9 && len(aidSortedRaw) > 0; ## Make this configurable. 338 338 if fGenerateGraph: 339 339 asNames = []; … … 418 418 # Generate the graph. 419 419 # 420 fGenerateGraph = len(aidSortedRaw) <= 6 ; ## Make this configurable.420 fGenerateGraph = len(aidSortedRaw) <= 6 && len(aidSortedRaw) > 0; ## Make this configurable. 421 421 if fGenerateGraph: 422 422 # Figure the graph width for all of them.
Note:
See TracChangeset
for help on using the changeset viewer.