diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-15 07:45:08 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-15 07:45:08 +0300 |
commit | 3121e8067a613680433724f0c0eb30254e622649 (patch) | |
tree | 4fd15f108819638f0a5c431fdb8e9af34c0fd93d /src/app.c | |
parent | a308db056515f8fb30be36d6ff028b788626465c (diff) |
Built-in embedded “about:” pages; Help menu
Diffstat (limited to 'src/app.c')
-rw-r--r-- | src/app.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -587,7 +587,8 @@ iBool handleCommand_App(const char *cmd) { | |||
587 | setCommandHandler_Widget(dlg, handlePrefsCommands_); | 587 | setCommandHandler_Widget(dlg, handlePrefsCommands_); |
588 | } | 588 | } |
589 | else if (equal_Command(cmd, "navigate.home")) { | 589 | else if (equal_Command(cmd, "navigate.home")) { |
590 | postCommand_App("open url:about:home"); | 590 | /* TODO: Look for bookmarks tagged homepage, or use the URL set in Preferences. */ |
591 | postCommand_App("open url:about:lagrange"); | ||
591 | return iTrue; | 592 | return iTrue; |
592 | } | 593 | } |
593 | else if (equal_Command(cmd, "zoom.set")) { | 594 | else if (equal_Command(cmd, "zoom.set")) { |