Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wm-actions: Unminimize views in reverse to maintain stacking order #2044

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plugins/wm-actions/wm-actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,8 @@ class wayfire_wm_actions_output_t : public wf::per_output_plugin_instance_t
workspace_changed.disconnect();
view_minimized.disconnect();

for (auto& view : output->wset()->get_views())
auto views = output->wset()->get_views(wf::WSET_SORT_STACKING);
for (auto& view : wf::reverse(views))
{
if (view->has_data("wm-actions-showdesktop"))
{
Expand Down
Loading