aboutsummaryrefslogtreecommitdiff
path: root/dumb_render.f90
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2020-08-11 11:18:40 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2020-08-11 11:18:40 -0400
commitc4e6d5f47a876ac7e6446531005665d6547fafb5 (patch)
tree2e4ba14484a37da3e1f9ed1b10d1aab193356cde /dumb_render.f90
parente9dfc0a04d1bdb018ae77f1d914bf0e77f3370b6 (diff)
downloadLR-87-c4e6d5f47a876ac7e6446531005665d6547fafb5.tar.gz
LR-87-c4e6d5f47a876ac7e6446531005665d6547fafb5.zip
Favorites can be removed too. Added some robustness to loading favorites, especially when there are none remaining.
Diffstat (limited to 'dumb_render.f90')
-rw-r--r--dumb_render.f905
1 files changed, 4 insertions, 1 deletions
diff --git a/dumb_render.f90 b/dumb_render.f90
index 2f2f2b8..02a6e2a 100644
--- a/dumb_render.f90
+++ b/dumb_render.f90
@@ -396,7 +396,7 @@ contains
character(*), intent(out)::input
- write(*, '(A66)', advance='no') "*** [U] URL | [!] Save/Remove Fave | [F] Goto Faves | [Q] Quit => "
+ write(*, '(A60)', advance='no') "*** [U] URL | [!] Save/Remove Fave | [L] Menu | [Q] Quit => "
read(*, *) input
end subroutine prompt_user_more
@@ -430,6 +430,9 @@ contains
dumb_action = render_action_back
else if(trim(input) == "q" .or. trim(input) == "Q") then
dumb_action = render_action_quit
+ else if(trim(input) == "l" .or. trim(input) == "L") then
+ dumb_action = render_action_goto
+ text = "lr87://menu"
else if(trim(input) == "u" .or. trim(input) == "U") then
write(*, '(A5)', advance='no') "URL: "
read(*,'(A75)') text