aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/mark.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/mark.c')
-rw-r--r--sway/commands/mark.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sway/commands/mark.c b/sway/commands/mark.c
index 9ea8c301..fb95a7d0 100644
--- a/sway/commands/mark.c
+++ b/sway/commands/mark.c
@@ -18,13 +18,12 @@ struct cmd_results *cmd_mark(int argc, char **argv) {
if ((error = checkarg(argc, "mark", EXPECTED_AT_LEAST, 1))) {
return error;
}
- struct sway_container *container =
- config->handler_context.current_container;
- if (container->type != C_VIEW) {
+ struct sway_container *container = config->handler_context.container;
+ if (!container->view) {
return cmd_results_new(CMD_INVALID, "mark",
"Only views can have marks");
}
- struct sway_view *view = container->sway_view;
+ struct sway_view *view = container->view;
bool add = false, toggle = false;
while (argc > 0 && strncmp(*argv, "--", 2) == 0) {