diff options
author | Jasper St. Pierre <jstpierre@mecheye.net> | 2014-01-21 12:59:51 -0500 |
---|---|---|
committer | Florian Müllner <fmuellner@gnome.org> | 2014-01-29 12:26:41 -0500 |
commit | 477eb1afed74f49bce8862e09e5dab37be7d4caf (patch) | |
tree | 7550a6cd9700d11e1acde86daf837843d1f009ca | |
parent | 3b8b05518c85fa962ca12413fee66bcea86e3093 (diff) |
constraints: CSD windows need to have their titlebar kept onscreen too
GTK+ CSD windows are considered undecorated by the code, so we should
not force ourselves to only run on decorated windows.
https://bugzilla.gnome.org/show_bug.cgi?id=719772
-rw-r--r-- | src/core/constraints.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/constraints.c b/src/core/constraints.c index 20a918b6..96de77ab 100644 --- a/src/core/constraints.c +++ b/src/core/constraints.c @@ -1390,7 +1390,6 @@ constrain_titlebar_visible (MetaWindow *window, window->type == META_WINDOW_DOCK || window->fullscreen || !window->require_titlebar_visible || - !window->decorated || unconstrained_user_action) return TRUE; |