aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/config/output.c')
-rw-r--r--sway/config/output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/config/output.c b/sway/config/output.c
index 63c81382..fa509252 100644
--- a/sway/config/output.c
+++ b/sway/config/output.c
@@ -375,7 +375,7 @@ static const uint32_t *bit_depth_preferences[] = {
375 375
376static void queue_output_config(struct output_config *oc, 376static void queue_output_config(struct output_config *oc,
377 struct sway_output *output) { 377 struct sway_output *output) {
378 if (output == root->noop_output) { 378 if (output == root->fallback_output) {
379 return; 379 return;
380 } 380 }
381 381
@@ -478,7 +478,7 @@ static void queue_output_config(struct output_config *oc,
478} 478}
479 479
480bool apply_output_config(struct output_config *oc, struct sway_output *output) { 480bool apply_output_config(struct output_config *oc, struct sway_output *output) {
481 if (output == root->noop_output) { 481 if (output == root->fallback_output) {
482 return false; 482 return false;
483 } 483 }
484 484
@@ -573,7 +573,7 @@ bool apply_output_config(struct output_config *oc, struct sway_output *output) {
573} 573}
574 574
575bool test_output_config(struct output_config *oc, struct sway_output *output) { 575bool test_output_config(struct output_config *oc, struct sway_output *output) {
576 if (output == root->noop_output) { 576 if (output == root->fallback_output) {
577 return false; 577 return false;
578 } 578 }
579 579