aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xGradeBook_lib.tcl6
1 files changed, 5 insertions, 1 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl
index 7d89afe..9a8824e 100755
--- a/GradeBook_lib.tcl
+++ b/GradeBook_lib.tcl
@@ -1437,7 +1437,11 @@ proc htmlFormatColVal { col_value columnname user user_shown permission_list {fo
UserHiddenGradeCategories \
]
- if { ([SelectColValue4User GroupName $user_shown] ne "inforow") && ($user ni $special_user_names) && ($columnname ni $embeded_actions_excluded_special_columns) } {
+ set column_categories_without_marker [ list \
+ Note \
+ Info \
+ ]
+ if { ([SelectColValue4User GroupName $user_shown] ne "inforow") && ($user ni $special_user_names) && ($columnname ni $embeded_actions_excluded_special_columns) && ($category ni $column_categories_without_marker) } {
# adding histogram marker
set hist_marker ""
set col_histogram_limits [SelectColValue4User $columnname _The_Grades_Hist_Limits_]