X Tutup
Skip to content

Commit cb8e289

Browse files
committed
Change "Reverse Order" to "Log earliest first" and make it the default option
1 parent f46e86a commit cb8e289

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

data/lang/ui-core/en.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,9 +1327,9 @@
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",

data/pigui/modules/info-view/06-flightlog.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ local buttonSpaceSize = iconSize
2424
local include_custom_log = true
2525
local include_station_log = true
2626
local include_system_log = true
27-
local earliest_first = false
27+
local earliest_first = true
2828
local export_html = true
2929

3030
local 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)
175176
end
176177

177178

0 commit comments

Comments
 (0)
X Tutup