diff --git a/src/commands.cc b/src/commands.cc index 7727fe05..7abf8974 100644 --- a/src/commands.cc +++ b/src/commands.cc @@ -555,14 +555,14 @@ void menu(const CommandParameters& params, Context& context) static String assist(String message, CharCount maxWidth) { static const std::vector assistant = - { R"( ╭──╮ )", - R"( │ │ )", - R"( @ @ ╭)", - R"( ││ ││ │)", - R"( ││ ││ ╯)", - R"( │╰─╯│ )", - R"( ╰───╯ )", - R"( )" }; + { " ╭──╮ ", + " │ │ ", + " @ @ ╭", + " ││ ││ │", + " ││ ││ ╯", + " │╰─╯│ ", + " ╰───╯ ", + " " }; const CharCount maxBubbleWidth = maxWidth - assistant[0].char_length() - 6; CharCount bubbleWidth = 0;