@@ -37,19 +37,19 @@ const Bar::bar_mode_map Bar::PRESET_MODES = { //
37
37
.visible = true }},
38
38
{" hide" ,
39
39
{//
40
- .layer = bar_layer::TOP ,
40
+ .layer = bar_layer::OVERLAY ,
41
41
.exclusive = false ,
42
42
.passthrough = false ,
43
43
.visible = true }},
44
44
{" invisible" ,
45
45
{//
46
- .layer = std::nullopt ,
46
+ .layer = bar_layer::BOTTOM ,
47
47
.exclusive = false ,
48
48
.passthrough = true ,
49
49
.visible = false }},
50
50
{" overlay" ,
51
51
{//
52
- .layer = bar_layer::TOP ,
52
+ .layer = bar_layer::OVERLAY ,
53
53
.exclusive = false ,
54
54
.passthrough = true ,
55
55
.visible = true }}};
@@ -59,7 +59,7 @@ const std::string Bar::MODE_INVISIBLE = "invisible";
59
59
const std::string_view DEFAULT_BAR_ID = " bar-0" ;
60
60
61
61
/* Deserializer for enum bar_layer */
62
- void from_json (const Json::Value& j, std::optional< bar_layer> & l) {
62
+ void from_json (const Json::Value& j, bar_layer& l) {
63
63
if (j == " bottom" ) {
64
64
l = bar_layer::BOTTOM;
65
65
} else if (j == " top" ) {
@@ -132,6 +132,7 @@ void from_json(const Json::Value& j, std::map<Key, Value>& m) {
132
132
waybar::Bar::Bar (struct waybar_output * w_output, const Json::Value& w_config)
133
133
: output(w_output),
134
134
config(w_config),
135
+ surface(nullptr ),
135
136
window{Gtk::WindowType::WINDOW_TOPLEVEL},
136
137
x_global (0 ),
137
138
y_global(0 ),
@@ -316,13 +317,13 @@ void waybar::Bar::setMode(const std::string& mode) {
316
317
void waybar::Bar::setMode (const struct bar_mode & mode) {
317
318
auto * gtk_window = window.gobj ();
318
319
319
- if (mode.layer == bar_layer::BOTTOM) {
320
- gtk_layer_set_layer (gtk_window, GTK_LAYER_SHELL_LAYER_BOTTOM);
321
- } else if (mode.layer == bar_layer::TOP) {
322
- gtk_layer_set_layer (gtk_window, GTK_LAYER_SHELL_LAYER_TOP);
320
+ auto layer = GTK_LAYER_SHELL_LAYER_BOTTOM;
321
+ if (mode.layer == bar_layer::TOP) {
322
+ layer = GTK_LAYER_SHELL_LAYER_TOP;
323
323
} else if (mode.layer == bar_layer::OVERLAY) {
324
- gtk_layer_set_layer (gtk_window, GTK_LAYER_SHELL_LAYER_OVERLAY) ;
324
+ layer = GTK_LAYER_SHELL_LAYER_OVERLAY;
325
325
}
326
+ gtk_layer_set_layer (gtk_window, layer);
326
327
327
328
if (mode.exclusive ) {
328
329
gtk_layer_auto_exclusive_zone_enable (gtk_window);
@@ -339,6 +340,13 @@ void waybar::Bar::setMode(const struct bar_mode& mode) {
339
340
window.get_style_context ()->add_class (" hidden" );
340
341
window.set_opacity (0 );
341
342
}
343
+ /*
344
+ * All the changes above require `wl_surface_commit`.
345
+ * gtk-layer-shell schedules a commit on the next frame event in GTK, but this could fail in
346
+ * certain scenarios, such as fully occluded bar.
347
+ */
348
+ gtk_layer_try_force_commit (gtk_window);
349
+ wl_display_flush (Client::inst ()->wl_display );
342
350
}
343
351
344
352
void waybar::Bar::setPassThrough (bool passthrough) {
0 commit comments