Don't minimize windows (when hiding applications) if they have
the B_NOT_MINIMIZABLE flag. It should more properly fix #4337. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34351 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1859,7 +1859,8 @@ Desktop::MinimizeApplication(team_id team)
|
||||
if (window->ServerWindow()->ClientTeam() != team)
|
||||
continue;
|
||||
|
||||
window->ServerWindow()->NotifyMinimize(true);
|
||||
if ((window->Flags() & B_NOT_MINIMIZABLE) == 0)
|
||||
window->ServerWindow()->NotifyMinimize(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user