mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
Check that window min and max size hints are at least 1. Fix for #107110.
2003-03-08 Rob Adams <robadams@ucla.edu> * src/window-props.c (reload_normal_hints): Check that window min and max size hints are at least 1. Fix for #107110.
This commit is contained in:
parent
c595a7ac0f
commit
4481be72d1
@ -1,3 +1,8 @@
|
|||||||
|
2003-03-08 Rob Adams <robadams@ucla.edu>
|
||||||
|
|
||||||
|
* src/window-props.c (reload_normal_hints): Check that window min
|
||||||
|
and max size hints are at least 1. Fix for #107110.
|
||||||
|
|
||||||
2003-02-27 Havoc Pennington <hp@pobox.com>
|
2003-02-27 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
Changes made on plane from FOSDEM, syncing from laptop.
|
Changes made on plane from FOSDEM, syncing from laptop.
|
||||||
|
@ -621,6 +621,39 @@ reload_normal_hints (MetaWindow *window,
|
|||||||
window->size_hints.max_height = window->size_hints.min_height;
|
window->size_hints.max_height = window->size_hints.min_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (window->size_hints.min_width < 1)
|
||||||
|
{
|
||||||
|
/* another cracksmoker */
|
||||||
|
meta_topic (META_DEBUG_GEOMETRY,
|
||||||
|
"Window %s sets min width to 0, which makes no sense\n",
|
||||||
|
window->desc);
|
||||||
|
window->size_hints.min_width = 1;
|
||||||
|
}
|
||||||
|
if (window->size_hints.max_width < 1)
|
||||||
|
{
|
||||||
|
/* another cracksmoker */
|
||||||
|
meta_topic (META_DEBUG_GEOMETRY,
|
||||||
|
"Window %s sets max width to 0, which makes no sense\n",
|
||||||
|
window->desc);
|
||||||
|
window->size_hints.max_width = 1;
|
||||||
|
}
|
||||||
|
if (window->size_hints.min_height < 1)
|
||||||
|
{
|
||||||
|
/* another cracksmoker */
|
||||||
|
meta_topic (META_DEBUG_GEOMETRY,
|
||||||
|
"Window %s sets min height to 0, which makes no sense\n",
|
||||||
|
window->desc);
|
||||||
|
window->size_hints.min_height = 1;
|
||||||
|
}
|
||||||
|
if (window->size_hints.max_height < 1)
|
||||||
|
{
|
||||||
|
/* another cracksmoker */
|
||||||
|
meta_topic (META_DEBUG_GEOMETRY,
|
||||||
|
"Window %s sets max height to 0, which makes no sense\n",
|
||||||
|
window->desc);
|
||||||
|
window->size_hints.max_height = 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (window->size_hints.flags & PResizeInc)
|
if (window->size_hints.flags & PResizeInc)
|
||||||
{
|
{
|
||||||
meta_topic (META_DEBUG_GEOMETRY, "Window %s sets resize width inc: %d height inc: %d\n",
|
meta_topic (META_DEBUG_GEOMETRY, "Window %s sets resize width inc: %d height inc: %d\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user