Skip to content

Commit

Permalink
[macos] document MWP_MAC_NO_NEST for Ventura
Browse files Browse the repository at this point in the history
  • Loading branch information
stronnag committed Dec 28, 2024
1 parent ac3d4ec commit 476c4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mwp/mwp-window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ namespace Mwp {
#if !DARWIN
popover.flags = Gtk.PopoverMenuFlags.NESTED;
#else
if(Environment.get_variable("MWP_MAC_NESTED") != null) {
if(Environment.get_variable("MWP_MAC_NO_NEST") == null) {
popover.flags = Gtk.PopoverMenuFlags.NESTED;
}
#endif
Expand Down

0 comments on commit 476c4ec

Please sign in to comment.