()
| 1023 | } |
| 1024 | |
| 1025 | func (tv *TableView) visibleFrozenColumnCount() int { |
| 1026 | var count int |
| 1027 | |
| 1028 | for _, tvc := range tv.columns.items { |
| 1029 | if tvc.frozen && tvc.visible { |
| 1030 | count++ |
| 1031 | } |
| 1032 | } |
| 1033 | |
| 1034 | return count |
| 1035 | } |
| 1036 | |
| 1037 | func (tv *TableView) visibleColumnCount() int { |
| 1038 | var count int |
no outgoing calls
no test coverage detected