summaryrefslogtreecommitdiffstats
path: root/sway/commands/title_format.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/title_format.c')
-rw-r--r--sway/commands/title_format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/title_format.c b/sway/commands/title_format.c
index c9ffe8fa..ef1c8935 100644
--- a/sway/commands/title_format.c
+++ b/sway/commands/title_format.c
@@ -12,7 +12,7 @@ struct cmd_results *cmd_title_format(int argc, char **argv) {
12 return error; 12 return error;
13 } 13 }
14 struct sway_container *container = config->handler_context.container; 14 struct sway_container *container = config->handler_context.container;
15 if (!container->view) { 15 if (!container || !container->view) {
16 return cmd_results_new(CMD_INVALID, "title_format", 16 return cmd_results_new(CMD_INVALID, "title_format",
17 "Only views can have a title_format"); 17 "Only views can have a title_format");
18 } 18 }