From e904b000adb3dd0e05188d552d4210704be10b6f Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Fri, 20 Dec 2019 10:07:44 +0100 Subject: [PATCH] Make `/roster color` configurable when offline --- src/command/cmd_ac.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/command/cmd_ac.c b/src/command/cmd_ac.c index 7950c811..6d035fa5 100644 --- a/src/command/cmd_ac.c +++ b/src/command/cmd_ac.c @@ -1787,6 +1787,10 @@ _roster_autocomplete(ProfWin *window, const char *const input, gboolean previous if (result) { return result; } + result = autocomplete_param_with_func(input, "/roster color", prefs_autocomplete_boolean_choice, previous); + if (result) { + return result; + } jabber_conn_status_t conn_status = connection_get_status(); if (conn_status == JABBER_CONNECTED) { @@ -1823,10 +1827,6 @@ _roster_autocomplete(ProfWin *window, const char *const input, gboolean previous if (result) { return result; } - result = autocomplete_param_with_func(input, "/roster color", prefs_autocomplete_boolean_choice, previous); - if (result) { - return result; - } } result = autocomplete_param_with_ac(input, "/roster remove_all", roster_remove_all_ac, TRUE, previous);