From 33d6c2fd2a3026dba554d1e57a63e25e0f497fff Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Tue, 3 Oct 2023 12:21:14 -0600 Subject: [PATCH] mag: Unminimize view when activating --- src/mag.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/mag.cpp b/src/mag.cpp index ac5ee2a..d709317 100644 --- a/src/mag.cpp +++ b/src/mag.cpp @@ -288,6 +288,11 @@ class wayfire_magnifier : public wf::per_output_plugin_instance_t { if (mag_view) { + if (mag_view->minimized) + { + mag_view->set_minimized(false); + } + return; }