From a14506281fa07dc5961dc0202d1e86a7dbdef210 Mon Sep 17 00:00:00 2001 From: "Gergely POLONKAI (W00d5t0ck)" Date: Tue, 17 Sep 2013 13:00:03 +0200 Subject: [PATCH] Added a comment in run_action() --- src/astrognome.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/astrognome.c b/src/astrognome.c index 2d826ba..02a425a 100644 --- a/src/astrognome.c +++ b/src/astrognome.c @@ -38,7 +38,7 @@ run_action(AgApp *app, gboolean is_remote) } } else if (option_quit) { ag_app_quit(app); - } else if (is_remote) { + } else if (is_remote) { // Keep this option the last one! ag_app_raise(app); } }