opt: disable some action in overview

This commit is contained in:
DreamMaoMao
2025-09-22 15:43:25 +08:00
parent fc38d4b278
commit 17c683a2bf
2 changed files with 15 additions and 0 deletions

View File

@@ -893,6 +893,10 @@ void clear_fullscreen_flag(Client *c) {
}
void minimized(const Arg *arg) {
if (selmon && selmon->isoverview)
return;
if (selmon->sel && !selmon->sel->isminied) {
set_minimized(selmon->sel);
}