Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Uwe Fechner committed May 1, 2024
1 parent 1451bc0 commit da895f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/autopilot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function init(app::KiteApp; init_viewer=false)
app.viewer.menu_rel_tol.options[]=["0.005","0.001","0.0005","0.0001","0.00005", "0.00001",
"0.000005","0.000001"]
app.viewer.menu_time_lapse.options[]=["1x","2x","3x","4x","6x","9x","12x"]
app.viewer.menu_project.options[]=["Open", "save as...", "edit..."]
app.viewer.menu_project.options[]=["Open...", "Save as...", "Edit..."]
if app.set.time_lapse==12.0
app.viewer.menu_time_lapse.i_selected[] = 7
elseif app.set.time_lapse==9.0
Expand Down Expand Up @@ -435,7 +435,7 @@ end
on(app.viewer.menu_project.i_selected) do c
global PROJECT, app
sel = app.viewer.menu_project.selection[]
if sel == "Open"
if sel == "Open..."
@async begin
filename = fetch(Threads.@spawn pick_file("data"; filterlist="yml"))
if filename != ""
Expand Down

0 comments on commit da895f2

Please sign in to comment.