aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/scratchpad.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/scratchpad.c')
-rw-r--r--sway/commands/scratchpad.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/scratchpad.c b/sway/commands/scratchpad.c
index 26f0e490..6eab456d 100644
--- a/sway/commands/scratchpad.c
+++ b/sway/commands/scratchpad.c
@@ -87,6 +87,10 @@ struct cmd_results *cmd_scratchpad(int argc, char **argv) {
87 return cmd_results_new(CMD_INVALID, "scratchpad", 87 return cmd_results_new(CMD_INVALID, "scratchpad",
88 "Expected 'scratchpad show'"); 88 "Expected 'scratchpad show'");
89 } 89 }
90 if (!root->outputs->length) {
91 return cmd_results_new(CMD_INVALID, "scratchpad",
92 "Can't run this command while there's no outputs connected.");
93 }
90 if (!root->scratchpad->length) { 94 if (!root->scratchpad->length) {
91 return cmd_results_new(CMD_INVALID, "scratchpad", 95 return cmd_results_new(CMD_INVALID, "scratchpad",
92 "Scratchpad is empty"); 96 "Scratchpad is empty");