Don't apply onscreen constraints to full screen windows. Fix for #110048
2003-05-01 Rob Adams <robadams@ucla.edu> * src/constraints.c (constraint_onscreen_applies_func): Don't apply onscreen constraints to full screen windows. Fix for #110048
This commit is contained in:
parent
9569096991
commit
a8f9e2e919
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-05-01 Rob Adams <robadams@ucla.edu>
|
||||
|
||||
* src/constraints.c (constraint_onscreen_applies_func): Don't
|
||||
apply onscreen constraints to full screen windows. Fix for
|
||||
#110048
|
||||
|
||||
2003-04-29 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* src/bell.h: include Xlib.h before XKBlib.h which is required on
|
||||
|
|
|
@ -338,6 +338,7 @@ static gboolean
|
|||
constraint_onscreen_applies_func (MetaWindow *window)
|
||||
{
|
||||
return
|
||||
!window->fullscreen &&
|
||||
window->type != META_WINDOW_DESKTOP &&
|
||||
window->type != META_WINDOW_DOCK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue