diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/frames.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/frames.c b/src/ui/frames.c index 57b13bd9..ce3e3f5b 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -2979,7 +2979,10 @@ get_control (MetaFrames *frames, return META_FRAME_CONTROL_RESIZE_E; } - return META_FRAME_CONTROL_NONE; + if (y >= fgeom.borders.total.top) + return META_FRAME_CONTROL_NONE; + else + return META_FRAME_CONTROL_TITLE; } void |