diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-10-20 15:17:51 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-10-20 15:17:51 +0200 |
| commit | 8cfc5c6e9d71db0e0e4c859ab574373f091d7165 (patch) | |
| tree | 84a1b8a8711aff14c00ac8c96c6f31c8e5be26af | |
| parent | 4551324483edf1fbbbe6b2bd10f871945b20aa9b (diff) | |
| parent | fd65201085c87d07543df71e0c7688e58d2959d2 (diff) | |
Merge pull request #2887 from RyanDwyer/bar-overlay
Put swaybar in overlay layer when using mode hide
| -rw-r--r-- | swaybar/bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index 5e9767b2..fa761925 100644 --- a/swaybar/bar.c +++ b/swaybar/bar.c @@ -102,7 +102,7 @@ static void add_layer_surface(struct swaybar_output *output) { bool hidden = strcmp(config->mode, "hide") == 0; output->layer_surface = zwlr_layer_shell_v1_get_layer_surface( bar->layer_shell, output->surface, output->output, - hidden ? ZWLR_LAYER_SHELL_V1_LAYER_TOP : + hidden ? ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY : ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM, "panel"); assert(output->layer_surface); zwlr_layer_surface_v1_add_listener(output->layer_surface, |
