diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-02-14 08:38:07 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-02-14 08:38:07 +0200 |
commit | b18205c60ee2c4549cf521e02f0223aec46e90b5 (patch) | |
tree | 21161011a9ce0f0a71f1438fe402e68dfe30b449 /src/app.c | |
parent | 6b47d005f8270522189d80949d6dbd045d8adae9 (diff) |
Open Help on first run
Make things less confusing for newcomers by showing the Help document on first run. Moved up the "What is Gemini" section to the top since it has the FAQ link.
IssueID #159
Diffstat (limited to 'src/app.c')
-rw-r--r-- | src/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -498,7 +498,7 @@ static void init_App_(iApp *d, int argc, char **argv) { | |||
498 | /* Widget state init. */ | 498 | /* Widget state init. */ |
499 | processEvents_App(postedEventsOnly_AppEventMode); | 499 | processEvents_App(postedEventsOnly_AppEventMode); |
500 | if (!loadState_App_(d)) { | 500 | if (!loadState_App_(d)) { |
501 | postCommand_App("navigate.home"); | 501 | postCommand_App("open url:about:help"); |
502 | } | 502 | } |
503 | postCommand_App("window.unfreeze"); | 503 | postCommand_App("window.unfreeze"); |
504 | d->isFinishedLaunching = iTrue; | 504 | d->isFinishedLaunching = iTrue; |