summaryrefslogtreecommitdiffstats
path: root/sway/tree/workspace.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/workspace.c')
-rw-r--r--sway/tree/workspace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 395c6c10..b8bec044 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -18,7 +18,7 @@
18#include "log.h" 18#include "log.h"
19#include "util.h" 19#include "util.h"
20 20
21static struct sway_container *get_workspace_initial_output(const char *name) { 21struct sway_container *workspace_get_initial_output(const char *name) {
22 struct sway_container *parent; 22 struct sway_container *parent;
23 // Search for workspace<->output pair 23 // Search for workspace<->output pair
24 int e = config->workspace_outputs->length; 24 int e = config->workspace_outputs->length;
@@ -48,7 +48,7 @@ static struct sway_container *get_workspace_initial_output(const char *name) {
48struct sway_container *workspace_create(struct sway_container *output, 48struct sway_container *workspace_create(struct sway_container *output,
49 const char *name) { 49 const char *name) {
50 if (output == NULL) { 50 if (output == NULL) {
51 output = get_workspace_initial_output(name); 51 output = workspace_get_initial_output(name);
52 } 52 }
53 53
54 wlr_log(WLR_DEBUG, "Added workspace %s for output %s", name, output->name); 54 wlr_log(WLR_DEBUG, "Added workspace %s for output %s", name, output->name);