summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-02-14 08:38:07 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-02-14 08:38:07 +0200
commitb18205c60ee2c4549cf521e02f0223aec46e90b5 (patch)
tree21161011a9ce0f0a71f1438fe402e68dfe30b449 /src
parent6b47d005f8270522189d80949d6dbd045d8adae9 (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')
-rw-r--r--src/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.c b/src/app.c
index a0054a9f..db150f0b 100644
--- a/src/app.c
+++ b/src/app.c
@@ -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;