File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
src/mission/imap/+mag/+imap/+view Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 3
3
- (All) Add shortcut to open app from toolbar (quick access)
4
4
- (All) Fix errors when closing app during mission selection
5
5
6
+ ## Software
7
+
8
+ - (IMAP) Check there is data before enabling auto-compression event in ` mag.imap.view.Field `
9
+
6
10
## Package
7
11
8
12
- Add MATLAB package definition
Original file line number Diff line number Diff line change @@ -93,7 +93,10 @@ function visualize(this)
93
93
94
94
selectedEvents = this .Events ;
95
95
96
- if isempty(selectedEvents ) && (any(diff(primary .Compression ) ~= 0 ) || any(diff(secondary .Compression ) ~= 0 ))
96
+ if isempty(selectedEvents ) && ...
97
+ ((primary .HasData && any(diff(primary .Compression ) ~= 0 )) || ...
98
+ (secondary .HasData && any(diff(secondary .Compression ) ~= 0 )))
99
+
97
100
selectedEvents = " Compression" ;
98
101
end
99
102
You can’t perform that action at this time.
0 commit comments