File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 13271327 "description" : " Indicate to make an entry into flight log system" ,
13281328 "message" : " New Entry"
13291329 },
1330- "LOG_REVERSE_ORDER " : {
1331- "description" : " Reverse the chronological order of the log entries " ,
1332- "message" : " Reverse Order"
1330+ "LOG_EARLIEST_FIRST " : {
1331+ "description" : " Show the log entries in chronological order, earliest first " ,
1332+ "message" : " Order earliest first "
13331333 },
13341334 "LOG_STATION" : {
13351335 "description" : " Label tab for showing logged station events" ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ local buttonSpaceSize = iconSize
2424local include_custom_log = true
2525local include_station_log = true
2626local include_system_log = true
27- local earliest_first = false
27+ local earliest_first = true
2828local export_html = true
2929
3030local function getIncludedSet ()
@@ -171,7 +171,8 @@ local function displayFilterOptions()
171171 c ,include_custom_log = ui .checkbox (l .LOG_CUSTOM , include_custom_log )
172172 c ,include_station_log = ui .checkbox (l .LOG_STATION , include_station_log )
173173 c ,include_system_log = ui .checkbox (l .LOG_SYSTEM , include_system_log )
174- c ,earliest_first = ui .checkbox (l .LOG_REVERSE_ORDER , earliest_first )
174+ ui .separator ()
175+ c ,earliest_first = ui .checkbox (l .LOG_EARLIEST_FIRST , earliest_first )
175176end
176177
177178
You can’t perform that action at this time.
0 commit comments