diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-02 15:30:53 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-02 15:30:53 +0200 |
| commit | 2e8842a0fff8d2271638e3f5f3f80402ccb46009 (patch) | |
| tree | b9d992afc1f2ab1602ace5c37572e6881442b437 | |
| parent | 22e35ad5945c55cd896b4d222494f0304f71c640 (diff) | |
change from layer top to bottom to fix fullscreen bug
| -rw-r--r-- | dbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -420,7 +420,7 @@ void register_bar(Bar *bar) { char *namespace = "dbar"; - uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_TOP; + uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM; uint32_t anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT; bar->dwl_output = zdwl_manager_v1_get_output(bar_state.dwl_manager, bar->wl_output); |